SlideShare a Scribd company logo
1 of 25
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

Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 

Recently uploaded (20)

Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 

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