SlideShare a Scribd company logo
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Content
 Introduction
 MySQL
 Dreamweaver
 Usage, Speed Optimization, Resources
 Who use PHP?
 What does PHP code Look Like?
 Operators, Comparison, Functions
 Advantages
 How PHP works?
 About US
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Introduction
What is PHP?
• PHP is a scripting language that was originally
designed for web development to produce dynamic
web pages.
• For this purpose, PHP code is embedded into HTML
• PHP was created by Rasmus Lerdrof in 1995.
• PHP originally stood for “Personal Home Page”.
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
MYSQL
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
• MYSQL is currently the most popular open
source database server in existence
• On top of that, it is very commonly used in
conjunctions with PHP scripts to create powerful
and dynamic server-side applications.
Dreamweaver
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
• Macromedia Dreamweaver 8.0 is a powerful tool and
a vital upgrade for Web Designers, especially those
who create dynamic sites.
• Macromedia Dreamweaver 8.0 is a sophisticated
Web design app that best server professionals
incorporating multimedia elements and database-
driven content into their sites.
Usage
• PHP is a general-purpose scripting language that is
especially suites for server-side web development where
PHP is generally runs on web server.
• PHP code in a requested file is executed by the PHP
runtime, usually to create dynamic web page content.
• PHP is also used for command-line scripting and client-
side GUI applications.
• PHP can be deployed on most web servers, many
operating systems and platforms, and an be used with
many relational database management systems.
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Speed Optimization
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
• PHP scripts are stored as human-readable source code and
are compiled on-the-fly to an internal format that can be
executed by the PHP engine.
• Code optimization aim to reduce the runtime of the
compiled code by reducing its size and making other
changes that can reduce the execution time with the goal
of improving performance.
Resources
• PHP includes free and open source libraries.
• PHP is a fundamentally Internal-aware system.
• Many database servers, embedded SQL libraries such as
PostgreSQL, MySQL and SQLite, LDAP servers, and
others.
• PHP allows developers to write extensions in C to add
functionality to the PHP language.
• These can then be compiled into PP or loaded
dynamically at runtime.
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Who use PHP?
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
• Yahoo!
• Facebook
• 20+ million other domain names
What does PHP code Look Like?
• Structurally similar to C/C++
• Supports procedural and object oriented paradigms(to
some degree)
• All PHP statements ends with semi-colon(;)
• Each PHP script must be enclosed in the reserved PHP
tag
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
<?php
...
...
?>
Operators
• Arithmetic
• String Concatenation
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
<?php
$a = 10;
$b = $a + 1; //11
$c = $a – 1; //9
$d = $a * 5; //50
$e = $a / 2; //5
$a = $a % 3; //1
?>
<?php
$myString = ‘foo’ . ’bar’; //foobar
$myString .= ‘baz’; //foobarbaz
Comparison
• Equivalence
• Identity
• Logical Operator
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
<?php
If ( 2 == 3 ) { echo “No”; }
If ( 3 == 3 ) { echo “Yes”; }
If ( 2 != 3 ) { echo “Yes”; }
<?php
If ( 3 === ‘3’ ) { echo “No”; }
If ( 3 === 3 ) { echo “Yes”; }
If ( 3 !== 4 ) { echo “Yes”; }
<?php
If ( !true ) { echo ‘No’; } //NOT
If ( true && false ) { echo ‘No’; } //AND
If ( true || false ) { echo ‘No’; } //OR
Functions
• Functions MUST be defined before then can be
called
• Function headers are of the format
– Not that no return type is specified
• Unlike variables, function names are not case
sensitive (foo(…) == Foo(…) == FoO(..))
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
function functionName($arg_1, $arg_2, …, $arg_n)
Functions Example
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Advantages of PHP
• Only Web Development
• Open Source
• There are good tools available
• Codes and solutions are easily available
• Fast installation and setup for development
• Lots and lots of knowledge and documentation
• Widely available
• Speed of development
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
How PHP Works?
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
About Us
Batra Computer Centre is not too old, but the
glorious five years are the best with good response
from our students and clients.
The Centre offer Training and Coaching in various
computer software Courses. And the credit directly
goes to our teachers, because they are the one who
make the students satisfied with their experience. it’s
true that the experience of the person speaks about
his/her capability.
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
BATRA COMPUTER CENTRE
SCO 15, Dayal Bagh,
Near Hanuman Mandir,
Ambala Cantt.
Phn No.: 9729666670,0171-4000670
Email: info.jatinbatra@gmail.com
Website: www.batracomputercentre.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com

More Related Content

Similar to PHP Training In Ambala ! Batra Computer Centre

6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centrejatin batra
 
PHP Training in Ambala ! BATRA COMPUTER CENTRE
PHP Training in Ambala ! BATRA COMPUTER CENTREPHP Training in Ambala ! BATRA COMPUTER CENTRE
PHP Training in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Northeast PHP - High Performance PHP
Northeast PHP - High Performance PHPNortheast PHP - High Performance PHP
Northeast PHP - High Performance PHPJonathan Klein
 
PHP Training in Ambala ! Batra Computer Centre
PHP Training in Ambala ! Batra Computer CentrePHP Training in Ambala ! Batra Computer Centre
PHP Training in Ambala ! Batra Computer Centrejatin batra
 
6 Month Training in Web Designing ! Batra Computer Centre
6 Month Training in Web Designing ! Batra Computer Centre6 Month Training in Web Designing ! Batra Computer Centre
6 Month Training in Web Designing ! Batra Computer Centrejatin batra
 
Web development Training In Batra Computer Centre
Web development Training In Batra Computer CentreWeb development Training In Batra Computer Centre
Web development Training In Batra Computer CentreBatra Computer Centre
 
PHP Hub in Ambala ! Batra Computer Centre
PHP Hub in Ambala ! Batra Computer CentrePHP Hub in Ambala ! Batra Computer Centre
PHP Hub in Ambala ! Batra Computer Centrejatin batra
 
Web Development Training In Ambala At Batra Computer Centre
Web Development Training In Ambala At Batra Computer CentreWeb Development Training In Ambala At Batra Computer Centre
Web Development Training In Ambala At Batra Computer CentreBatra Computer Centre
 
Cegonsoft - Best PHP,Java,Lamp,Android,Testing,SEO Training Institute BAngalore
Cegonsoft - Best PHP,Java,Lamp,Android,Testing,SEO Training Institute BAngaloreCegonsoft - Best PHP,Java,Lamp,Android,Testing,SEO Training Institute BAngalore
Cegonsoft - Best PHP,Java,Lamp,Android,Testing,SEO Training Institute BAngaloredhivyas19
 
Web Development Training in Ambala ! Batra Computer Centre
Web Development Training in Ambala ! Batra Computer CentreWeb Development Training in Ambala ! Batra Computer Centre
Web Development Training in Ambala ! Batra Computer Centrejatin batra
 
2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida realPHP Conference Argentina
 
LAB PHP Consolidated.ppt
LAB PHP Consolidated.pptLAB PHP Consolidated.ppt
LAB PHP Consolidated.pptYasirAhmad80
 
Custom PHP Development Services
Custom PHP Development ServicesCustom PHP Development Services
Custom PHP Development ServicesRuchi Singh
 
Documentation of Online jobs for BCA last sem on PHP.
Documentation of Online jobs for BCA last sem on PHP.Documentation of Online jobs for BCA last sem on PHP.
Documentation of Online jobs for BCA last sem on PHP.Harsh Tamakuwala
 
Purnendu_MSc_Exp12Yrs_PHPMYSQL
Purnendu_MSc_Exp12Yrs_PHPMYSQLPurnendu_MSc_Exp12Yrs_PHPMYSQL
Purnendu_MSc_Exp12Yrs_PHPMYSQLphp2ranjan
 
PHP/MySQL Training Course in Delhi, India by IT People
PHP/MySQL Training Course in Delhi, India by IT PeoplePHP/MySQL Training Course in Delhi, India by IT People
PHP/MySQL Training Course in Delhi, India by IT PeopleAbhishekve
 

Similar to PHP Training In Ambala ! Batra Computer Centre (20)

6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre
 
PHP Training in Ambala ! BATRA COMPUTER CENTRE
PHP Training in Ambala ! BATRA COMPUTER CENTREPHP Training in Ambala ! BATRA COMPUTER CENTRE
PHP Training in Ambala ! BATRA COMPUTER CENTRE
 
Northeast PHP - High Performance PHP
Northeast PHP - High Performance PHPNortheast PHP - High Performance PHP
Northeast PHP - High Performance PHP
 
PHP Training in Ambala ! Batra Computer Centre
PHP Training in Ambala ! Batra Computer CentrePHP Training in Ambala ! Batra Computer Centre
PHP Training in Ambala ! Batra Computer Centre
 
6 Month Training in Web Designing ! Batra Computer Centre
6 Month Training in Web Designing ! Batra Computer Centre6 Month Training in Web Designing ! Batra Computer Centre
6 Month Training in Web Designing ! Batra Computer Centre
 
Web development Training In Batra Computer Centre
Web development Training In Batra Computer CentreWeb development Training In Batra Computer Centre
Web development Training In Batra Computer Centre
 
PHP Hub in Ambala ! Batra Computer Centre
PHP Hub in Ambala ! Batra Computer CentrePHP Hub in Ambala ! Batra Computer Centre
PHP Hub in Ambala ! Batra Computer Centre
 
Web Development Training In Ambala At Batra Computer Centre
Web Development Training In Ambala At Batra Computer CentreWeb Development Training In Ambala At Batra Computer Centre
Web Development Training In Ambala At Batra Computer Centre
 
Cegonsoft - Best PHP,Java,Lamp,Android,Testing,SEO Training Institute BAngalore
Cegonsoft - Best PHP,Java,Lamp,Android,Testing,SEO Training Institute BAngaloreCegonsoft - Best PHP,Java,Lamp,Android,Testing,SEO Training Institute BAngalore
Cegonsoft - Best PHP,Java,Lamp,Android,Testing,SEO Training Institute BAngalore
 
Web Development Training in Ambala ! Batra Computer Centre
Web Development Training in Ambala ! Batra Computer CentreWeb Development Training in Ambala ! Batra Computer Centre
Web Development Training in Ambala ! Batra Computer Centre
 
Php reports sumit
Php reports sumitPhp reports sumit
Php reports sumit
 
2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real2013 - Dustin whittle - Escalando PHP en la vida real
2013 - Dustin whittle - Escalando PHP en la vida real
 
PHP training in chandigarh
PHP training in chandigarhPHP training in chandigarh
PHP training in chandigarh
 
LAB PHP Consolidated.ppt
LAB PHP Consolidated.pptLAB PHP Consolidated.ppt
LAB PHP Consolidated.ppt
 
Custom PHP Development Services
Custom PHP Development ServicesCustom PHP Development Services
Custom PHP Development Services
 
Documentation of Online jobs for BCA last sem on PHP.
Documentation of Online jobs for BCA last sem on PHP.Documentation of Online jobs for BCA last sem on PHP.
Documentation of Online jobs for BCA last sem on PHP.
 
Purnendu_MSc_Exp12Yrs_PHPMYSQL
Purnendu_MSc_Exp12Yrs_PHPMYSQLPurnendu_MSc_Exp12Yrs_PHPMYSQL
Purnendu_MSc_Exp12Yrs_PHPMYSQL
 
presentation slides
presentation slidespresentation slides
presentation slides
 
PHP/MySQL Training Course in Delhi, India by IT People
PHP/MySQL Training Course in Delhi, India by IT PeoplePHP/MySQL Training Course in Delhi, India by IT People
PHP/MySQL Training Course in Delhi, India by IT People
 
PHP Web Development.pdf
PHP Web Development.pdfPHP Web Development.pdf
PHP Web Development.pdf
 

More from jatin batra

Best SMO Training &Coaching in Ambala
Best SMO Training &Coaching in AmbalaBest SMO Training &Coaching in Ambala
Best SMO Training &Coaching in Ambalajatin batra
 
Best HTML Training &Coaching in Ambala
Best HTML Training &Coaching in AmbalaBest HTML Training &Coaching in Ambala
Best HTML Training &Coaching in Ambalajatin batra
 
Best SEO Training & Coaching in Ambala
Best SEO Training & Coaching in AmbalaBest SEO Training & Coaching in Ambala
Best SEO Training & Coaching in Ambalajatin batra
 
Best Photoshop Training in Ambala
 Best Photoshop Training  in Ambala Best Photoshop Training  in Ambala
Best Photoshop Training in Ambalajatin batra
 
Best C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in AmbalaBest C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in Ambalajatin batra
 
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTTBASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTTjatin batra
 
Web Browser ! Batra Computer Centre
Web Browser ! Batra Computer CentreWeb Browser ! Batra Computer Centre
Web Browser ! Batra Computer Centrejatin batra
 
Search Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer CentreSearch Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer Centrejatin batra
 
Networking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer CentreNetworking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer Centrejatin batra
 
SQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTRESQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Networking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTRENetworking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTREjatin batra
 
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTREMs Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTREBasic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRECorel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Basic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTREBasic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTREjatin batra
 
HTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer CentreHTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer Centrejatin batra
 
Benefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer CentreBenefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer Centrejatin batra
 
SEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer CentreSEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer Centrejatin batra
 
Internet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer CentreInternet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer Centrejatin batra
 
Basic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer CentreBasic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer Centrejatin batra
 

More from jatin batra (20)

Best SMO Training &Coaching in Ambala
Best SMO Training &Coaching in AmbalaBest SMO Training &Coaching in Ambala
Best SMO Training &Coaching in Ambala
 
Best HTML Training &Coaching in Ambala
Best HTML Training &Coaching in AmbalaBest HTML Training &Coaching in Ambala
Best HTML Training &Coaching in Ambala
 
Best SEO Training & Coaching in Ambala
Best SEO Training & Coaching in AmbalaBest SEO Training & Coaching in Ambala
Best SEO Training & Coaching in Ambala
 
Best Photoshop Training in Ambala
 Best Photoshop Training  in Ambala Best Photoshop Training  in Ambala
Best Photoshop Training in Ambala
 
Best C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in AmbalaBest C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in Ambala
 
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTTBASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
 
Web Browser ! Batra Computer Centre
Web Browser ! Batra Computer CentreWeb Browser ! Batra Computer Centre
Web Browser ! Batra Computer Centre
 
Search Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer CentreSearch Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer Centre
 
Networking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer CentreNetworking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer Centre
 
SQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTRESQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTRE
 
Networking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTRENetworking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTRE
 
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTREMs Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
 
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTREBasic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
 
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRECorel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
 
Basic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTREBasic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTRE
 
HTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer CentreHTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer Centre
 
Benefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer CentreBenefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer Centre
 
SEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer CentreSEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer Centre
 
Internet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer CentreInternet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer Centre
 
Basic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer CentreBasic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer Centre
 

Recently uploaded

MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxbennyroshan06
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasiemaillard
 
Accounting and finance exit exam 2016 E.C.pdf
Accounting and finance exit exam 2016 E.C.pdfAccounting and finance exit exam 2016 E.C.pdf
Accounting and finance exit exam 2016 E.C.pdfYibeltalNibretu
 
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptxSolid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptxDenish Jangid
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfjoachimlavalley1
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXMIRIAMSALINAS13
 
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptxJose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptxricssacare
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345beazzy04
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfTamralipta Mahavidyalaya
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...Nguyen Thanh Tu Collection
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chipsGeoBlogs
 
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...Denish Jangid
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsCol Mukteshwar Prasad
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxJisc
 
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...Sayali Powar
 
Basic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.pptBasic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.pptSourabh Kumar
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasGeoBlogs
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationDelapenabediema
 

Recently uploaded (20)

MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Accounting and finance exit exam 2016 E.C.pdf
Accounting and finance exit exam 2016 E.C.pdfAccounting and finance exit exam 2016 E.C.pdf
Accounting and finance exit exam 2016 E.C.pdf
 
NCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdfNCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdf
 
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptxSolid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptxJose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
 
Basic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.pptBasic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.ppt
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 

PHP Training In Ambala ! Batra Computer Centre

  • 1. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 2. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 3. Content  Introduction  MySQL  Dreamweaver  Usage, Speed Optimization, Resources  Who use PHP?  What does PHP code Look Like?  Operators, Comparison, Functions  Advantages  How PHP works?  About US Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 4. Introduction What is PHP? • PHP is a scripting language that was originally designed for web development to produce dynamic web pages. • For this purpose, PHP code is embedded into HTML • PHP was created by Rasmus Lerdrof in 1995. • PHP originally stood for “Personal Home Page”. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 5. MYSQL Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com • MYSQL is currently the most popular open source database server in existence • On top of that, it is very commonly used in conjunctions with PHP scripts to create powerful and dynamic server-side applications.
  • 6. Dreamweaver Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com • Macromedia Dreamweaver 8.0 is a powerful tool and a vital upgrade for Web Designers, especially those who create dynamic sites. • Macromedia Dreamweaver 8.0 is a sophisticated Web design app that best server professionals incorporating multimedia elements and database- driven content into their sites.
  • 7. Usage • PHP is a general-purpose scripting language that is especially suites for server-side web development where PHP is generally runs on web server. • PHP code in a requested file is executed by the PHP runtime, usually to create dynamic web page content. • PHP is also used for command-line scripting and client- side GUI applications. • PHP can be deployed on most web servers, many operating systems and platforms, and an be used with many relational database management systems. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 8. Speed Optimization Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com • PHP scripts are stored as human-readable source code and are compiled on-the-fly to an internal format that can be executed by the PHP engine. • Code optimization aim to reduce the runtime of the compiled code by reducing its size and making other changes that can reduce the execution time with the goal of improving performance.
  • 9. Resources • PHP includes free and open source libraries. • PHP is a fundamentally Internal-aware system. • Many database servers, embedded SQL libraries such as PostgreSQL, MySQL and SQLite, LDAP servers, and others. • PHP allows developers to write extensions in C to add functionality to the PHP language. • These can then be compiled into PP or loaded dynamically at runtime. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 10. Who use PHP? Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com • Yahoo! • Facebook • 20+ million other domain names
  • 11. What does PHP code Look Like? • Structurally similar to C/C++ • Supports procedural and object oriented paradigms(to some degree) • All PHP statements ends with semi-colon(;) • Each PHP script must be enclosed in the reserved PHP tag Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com <?php ... ... ?>
  • 12. Operators • Arithmetic • String Concatenation Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com <?php $a = 10; $b = $a + 1; //11 $c = $a – 1; //9 $d = $a * 5; //50 $e = $a / 2; //5 $a = $a % 3; //1 ?> <?php $myString = ‘foo’ . ’bar’; //foobar $myString .= ‘baz’; //foobarbaz
  • 13. Comparison • Equivalence • Identity • Logical Operator Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com <?php If ( 2 == 3 ) { echo “No”; } If ( 3 == 3 ) { echo “Yes”; } If ( 2 != 3 ) { echo “Yes”; } <?php If ( 3 === ‘3’ ) { echo “No”; } If ( 3 === 3 ) { echo “Yes”; } If ( 3 !== 4 ) { echo “Yes”; } <?php If ( !true ) { echo ‘No’; } //NOT If ( true && false ) { echo ‘No’; } //AND If ( true || false ) { echo ‘No’; } //OR
  • 14. Functions • Functions MUST be defined before then can be called • Function headers are of the format – Not that no return type is specified • Unlike variables, function names are not case sensitive (foo(…) == Foo(…) == FoO(..)) Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com function functionName($arg_1, $arg_2, …, $arg_n)
  • 15. Functions Example Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 16. Advantages of PHP • Only Web Development • Open Source • There are good tools available • Codes and solutions are easily available • Fast installation and setup for development • Lots and lots of knowledge and documentation • Widely available • Speed of development Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 17. How PHP Works? Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 18. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 19. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 20. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 21. About Us Batra Computer Centre is not too old, but the glorious five years are the best with good response from our students and clients. The Centre offer Training and Coaching in various computer software Courses. And the credit directly goes to our teachers, because they are the one who make the students satisfied with their experience. it’s true that the experience of the person speaks about his/her capability. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 22. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 23. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
  • 24. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com BATRA COMPUTER CENTRE SCO 15, Dayal Bagh, Near Hanuman Mandir, Ambala Cantt. Phn No.: 9729666670,0171-4000670 Email: info.jatinbatra@gmail.com Website: www.batracomputercentre.com
  • 25. Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com