SlideShare a Scribd company logo
OVERVIEW OF PHPOVERVIEW OF PHP
BY: Tabeer PatoliBY: Tabeer Patoli
Overview Of PHP:Overview Of PHP:
 PHP stands for Hypertext preprocessor.PHP stands for Hypertext preprocessor.
 Old name:Old name:
personal home pagepersonal home page
OROR
Professional home pageProfessional home page
 PHP is a server side scripting languagePHP is a server side scripting language
 PHP is used for web development.PHP is used for web development.
 It is used to create dynamic websites..It is used to create dynamic websites..
 It is free & open source.It is free & open source.
History:History:
Originally created byOriginally created by
Rasmus LerdorfRasmus Lerdorf
 PHP originallyPHP originally
stood for Personalstood for Personal
Home PageHome Page
 Used as a tool forUsed as a tool for
observing trafficobserving traffic
on webpageon webpage
 Known as fatherKnown as father
of PHP.of PHP.
 Upgrade in 1997 by Andi & zeev to addUpgrade in 1997 by Andi & zeev to add
OOP (Object Oriented Programming)..OOP (Object Oriented Programming)..
Andi Gutmans Zeev suraski
 For use the phpFor use the php
we must havewe must have
install Xamp,install Xamp,
Wamp or lamp.Wamp or lamp.
 Now adays theNow adays the
most universallymost universally
used xamp.used xamp.
 Install xamp in CInstall xamp in C
drive.drive.
When installing is finishedWhen installing is finished
then start the control panel:then start the control panel:
Php opening & closing tags:Php opening & closing tags:
There are four types of PHP tags:There are four types of PHP tags:
1.1. <?php….?><?php….?>
2.2. <?.....?><?.....?>
3.3. <%....%><%....%>
4.4. <script language=“PHP”>…</script><script language=“PHP”>…</script>
The most universally effective tag style isThe most universally effective tag style is
first one………..first one………..
Commenting in php:Commenting in php:
A commenting is the portion of aA commenting is the portion of a
program that exists only for the humanprogram that exists only for the human
reader.reader.
There are two commenting formats in php:There are two commenting formats in php:
 Single line commentSingle line comment
//………………////………………//
 Multi lines commentMulti lines comment
/*…………./*………….
…………………………………….*/.*/
Keep In mind:Keep In mind:
 Every language have print function,
Php use “echo” keyword to print the
statement.
 A statement in php is any expression
that is followed by a semicolon ”;”.
 merge two statements with dot “.”.
Simple programSimple program::
<?php // opening tag<?php // opening tag
echo “introduction to Php”; // printecho “introduction to Php”; // print
the statementthe statement
?> // closing tag?> // closing tag
Php variable types:Php variable types:
All variables in PHP are denoted with a leading dollar sign($).All variables in PHP are denoted with a leading dollar sign($).
Php has a total of seven data types:Php has a total of seven data types:
1.1. Integers are whole numbers like (45, 67)Integers are whole numbers like (45, 67)
2.2. Doubles are floating point numbers like (58.4, 67.2)Doubles are floating point numbers like (58.4, 67.2)
3.3. Booleans have only two possible values either true or false.Booleans have only two possible values either true or false.
4.4. Null is a special type that only has one value: null.Null is a special type that only has one value: null.
5.5. Strings are sequences of characters .Strings are sequences of characters .
6.6. Arrays are named & indexed collections of different dataArrays are named & indexed collections of different data
types.types.
7.7. Resources are special variables that hold references to resourceResources are special variables that hold references to resource
external to php (such as database connections)external to php (such as database connections)
Note:Note: variable name can consist of numbers, letters, underscores,variable name can consist of numbers, letters, underscores,
but you cant use characters like (+,-,%,) etc.but you cant use characters like (+,-,%,) etc.
There Is no size limit for variables.There Is no size limit for variables.
Php constantsPhp constants
 A constant is a name or identifier for a simple value. A constantA constant is a name or identifier for a simple value. A constant
value can not change during the execution of the script.value can not change during the execution of the script.
 To define the constant you have to use define() function.To define the constant you have to use define() function.
 Constant identifiers are always in upper case.Constant identifiers are always in upper case.
 You have not need to have a constant with a $.You have not need to have a constant with a $.
 Constant define in single comma.Constant define in single comma.
Example:Example:
<?php<?php
define(‘MINSIZE’, 50);define(‘MINSIZE’, 50);
echo MINSIZE;echo MINSIZE;
?>?>
Php Operators:Php Operators:
Php supports following type of operators:Php supports following type of operators:
 Arithmetic operatorsArithmetic operators
 Comparison operatorsComparison operators
 Logical operatorsLogical operators
 Assignment operatorsAssignment operators
 Conditional (or ternary) operatorsConditional (or ternary) operators
Thank youThank you

More Related Content

What's hot

Introduction to PHP
Introduction to PHPIntroduction to PHP
Introduction to PHP
Kengatharaiyer Sarveswaran
 
phptutorial
phptutorialphptutorial
phptutorial
tutorialsruby
 
Ph pbasics
Ph pbasicsPh pbasics
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
Anjan Banda
 
C#(VB)プログラマのためのF#入門
C#(VB)プログラマのためのF#入門C#(VB)プログラマのためのF#入門
C#(VB)プログラマのためのF#入門
bleis tift
 
Introduction to-php
Introduction to-phpIntroduction to-php
Introduction to-php
AhmedAElHalimAhmed
 
PHP
PHPPHP
Php notes 01
Php notes 01Php notes 01
Php notes 01
Aakaash Ngl
 
Php Tutorial
Php TutorialPhp Tutorial
Character sets and iconv
Character sets and iconvCharacter sets and iconv
Character sets and iconv
Daniel_Rhodes
 
Php
PhpPhp
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
KIRAN KUMAR SILIVERI
 
Php basics
Php basicsPhp basics
Php basics
Jamshid Hashimi
 
Php intro by sami kz
Php intro by sami kzPhp intro by sami kz
Php intro by sami kz
sami2244
 
Php
PhpPhp
Php notes
Php notesPhp notes
Php notes
Muthuganesh S
 
Basics PHP
Basics PHPBasics PHP
php basics
php basicsphp basics
php basics
Anmol Paul
 

What's hot (18)

Introduction to PHP
Introduction to PHPIntroduction to PHP
Introduction to PHP
 
phptutorial
phptutorialphptutorial
phptutorial
 
Ph pbasics
Ph pbasicsPh pbasics
Ph pbasics
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
 
C#(VB)プログラマのためのF#入門
C#(VB)プログラマのためのF#入門C#(VB)プログラマのためのF#入門
C#(VB)プログラマのためのF#入門
 
Introduction to-php
Introduction to-phpIntroduction to-php
Introduction to-php
 
PHP
PHPPHP
PHP
 
Php notes 01
Php notes 01Php notes 01
Php notes 01
 
Php Tutorial
Php TutorialPhp Tutorial
Php Tutorial
 
Character sets and iconv
Character sets and iconvCharacter sets and iconv
Character sets and iconv
 
Php
PhpPhp
Php
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
 
Php basics
Php basicsPhp basics
Php basics
 
Php intro by sami kz
Php intro by sami kzPhp intro by sami kz
Php intro by sami kz
 
Php
PhpPhp
Php
 
Php notes
Php notesPhp notes
Php notes
 
Basics PHP
Basics PHPBasics PHP
Basics PHP
 
php basics
php basicsphp basics
php basics
 

Similar to Overview of php

PHP Basic & Variables
PHP Basic & VariablesPHP Basic & Variables
PHP Basic & Variables
M.Zalmai Rahmani
 
Chap 4 PHP.pdf
Chap 4 PHP.pdfChap 4 PHP.pdf
Chap 4 PHP.pdf
HASENSEID
 
chapter 5 Server-Side Scripting (PHP).pdf
chapter 5 Server-Side Scripting (PHP).pdfchapter 5 Server-Side Scripting (PHP).pdf
chapter 5 Server-Side Scripting (PHP).pdf
burasyacob012
 
chapter Two Server-side Script lang.pptx
chapter  Two Server-side Script lang.pptxchapter  Two Server-side Script lang.pptx
chapter Two Server-side Script lang.pptx
alehegn9
 
phptutorial
phptutorialphptutorial
phptutorial
tutorialsruby
 
PHP Basics Ebook
PHP Basics EbookPHP Basics Ebook
PHP Basics Ebook
Swanand Pol
 
PHP - Introduction to PHP Fundamentals
PHP -  Introduction to PHP FundamentalsPHP -  Introduction to PHP Fundamentals
PHP - Introduction to PHP Fundamentals
Vibrant Technologies & Computers
 
Introduction to PHP - Basics of PHP
Introduction to PHP - Basics of PHPIntroduction to PHP - Basics of PHP
Introduction to PHP - Basics of PHP
wahidullah mudaser
 
PHP TRAINING
PHP TRAININGPHP TRAINING
PHP TRAINING
gurjinderbains
 
Materi Dasar PHP
Materi Dasar PHPMateri Dasar PHP
Materi Dasar PHP
Robby Firmansyah
 
Php1
Php1Php1
Php1
rajikaa
 
web Based Application Devlopment using PHP
web Based Application Devlopment using PHPweb Based Application Devlopment using PHP
web Based Application Devlopment using PHP
maccodder
 
Php tutorialw3schools
Php tutorialw3schoolsPhp tutorialw3schools
Php tutorialw3schools
rasool noorpour
 
Php tutorial(w3schools)
Php tutorial(w3schools)Php tutorial(w3schools)
Php tutorial(w3schools)
Arjun Shanka
 
Php tutorial from_beginner_to_master
Php tutorial from_beginner_to_masterPhp tutorial from_beginner_to_master
Php tutorial from_beginner_to_master
PrinceGuru MS
 
1336333055 php tutorial_from_beginner_to_master
1336333055 php tutorial_from_beginner_to_master1336333055 php tutorial_from_beginner_to_master
1336333055 php tutorial_from_beginner_to_master
jeeva indra
 
Php tutorial
Php tutorialPhp tutorial
Php tutorial
Niit
 
php basics
php basicsphp basics
php basics
NIRMAL FELIX
 
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Muhamad Al Imran
 
PHP Syntax & Comments
PHP Syntax & CommentsPHP Syntax & Comments
PHP Syntax & Comments
Sidrah Noor
 

Similar to Overview of php (20)

PHP Basic & Variables
PHP Basic & VariablesPHP Basic & Variables
PHP Basic & Variables
 
Chap 4 PHP.pdf
Chap 4 PHP.pdfChap 4 PHP.pdf
Chap 4 PHP.pdf
 
chapter 5 Server-Side Scripting (PHP).pdf
chapter 5 Server-Side Scripting (PHP).pdfchapter 5 Server-Side Scripting (PHP).pdf
chapter 5 Server-Side Scripting (PHP).pdf
 
chapter Two Server-side Script lang.pptx
chapter  Two Server-side Script lang.pptxchapter  Two Server-side Script lang.pptx
chapter Two Server-side Script lang.pptx
 
phptutorial
phptutorialphptutorial
phptutorial
 
PHP Basics Ebook
PHP Basics EbookPHP Basics Ebook
PHP Basics Ebook
 
PHP - Introduction to PHP Fundamentals
PHP -  Introduction to PHP FundamentalsPHP -  Introduction to PHP Fundamentals
PHP - Introduction to PHP Fundamentals
 
Introduction to PHP - Basics of PHP
Introduction to PHP - Basics of PHPIntroduction to PHP - Basics of PHP
Introduction to PHP - Basics of PHP
 
PHP TRAINING
PHP TRAININGPHP TRAINING
PHP TRAINING
 
Materi Dasar PHP
Materi Dasar PHPMateri Dasar PHP
Materi Dasar PHP
 
Php1
Php1Php1
Php1
 
web Based Application Devlopment using PHP
web Based Application Devlopment using PHPweb Based Application Devlopment using PHP
web Based Application Devlopment using PHP
 
Php tutorialw3schools
Php tutorialw3schoolsPhp tutorialw3schools
Php tutorialw3schools
 
Php tutorial(w3schools)
Php tutorial(w3schools)Php tutorial(w3schools)
Php tutorial(w3schools)
 
Php tutorial from_beginner_to_master
Php tutorial from_beginner_to_masterPhp tutorial from_beginner_to_master
Php tutorial from_beginner_to_master
 
1336333055 php tutorial_from_beginner_to_master
1336333055 php tutorial_from_beginner_to_master1336333055 php tutorial_from_beginner_to_master
1336333055 php tutorial_from_beginner_to_master
 
Php tutorial
Php tutorialPhp tutorial
Php tutorial
 
php basics
php basicsphp basics
php basics
 
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
Php i basic chapter 3 (mardhiah kamaludin's conflicted copy 2013-04-23)
 
PHP Syntax & Comments
PHP Syntax & CommentsPHP Syntax & Comments
PHP Syntax & Comments
 

Recently uploaded

math operations ued in python and all used
math operations ued in python and all usedmath operations ued in python and all used
math operations ued in python and all used
ssuser13ffe4
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
سمير بسيوني
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
RamseyBerglund
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
danielkiash986
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
MJDuyan
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
BoudhayanBhattachari
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
TechSoup
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
Stack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 MicroprocessorStack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 Microprocessor
JomonJoseph58
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Denish Jangid
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
S. Raj Kumar
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
National Information Standards Organization (NISO)
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
RidwanHassanYusuf
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 

Recently uploaded (20)

math operations ued in python and all used
math operations ued in python and all usedmath operations ued in python and all used
math operations ued in python and all used
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
 
B. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdfB. Ed Syllabus for babasaheb ambedkar education university.pdf
B. Ed Syllabus for babasaheb ambedkar education university.pdf
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
Stack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 MicroprocessorStack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 Microprocessor
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 

Overview of php

  • 1. OVERVIEW OF PHPOVERVIEW OF PHP BY: Tabeer PatoliBY: Tabeer Patoli
  • 2. Overview Of PHP:Overview Of PHP:  PHP stands for Hypertext preprocessor.PHP stands for Hypertext preprocessor.  Old name:Old name: personal home pagepersonal home page OROR Professional home pageProfessional home page  PHP is a server side scripting languagePHP is a server side scripting language  PHP is used for web development.PHP is used for web development.  It is used to create dynamic websites..It is used to create dynamic websites..  It is free & open source.It is free & open source.
  • 3. History:History: Originally created byOriginally created by Rasmus LerdorfRasmus Lerdorf  PHP originallyPHP originally stood for Personalstood for Personal Home PageHome Page  Used as a tool forUsed as a tool for observing trafficobserving traffic on webpageon webpage  Known as fatherKnown as father of PHP.of PHP.
  • 4.  Upgrade in 1997 by Andi & zeev to addUpgrade in 1997 by Andi & zeev to add OOP (Object Oriented Programming)..OOP (Object Oriented Programming).. Andi Gutmans Zeev suraski
  • 5.  For use the phpFor use the php we must havewe must have install Xamp,install Xamp, Wamp or lamp.Wamp or lamp.  Now adays theNow adays the most universallymost universally used xamp.used xamp.  Install xamp in CInstall xamp in C drive.drive.
  • 6. When installing is finishedWhen installing is finished then start the control panel:then start the control panel:
  • 7. Php opening & closing tags:Php opening & closing tags: There are four types of PHP tags:There are four types of PHP tags: 1.1. <?php….?><?php….?> 2.2. <?.....?><?.....?> 3.3. <%....%><%....%> 4.4. <script language=“PHP”>…</script><script language=“PHP”>…</script> The most universally effective tag style isThe most universally effective tag style is first one………..first one………..
  • 8. Commenting in php:Commenting in php: A commenting is the portion of aA commenting is the portion of a program that exists only for the humanprogram that exists only for the human reader.reader. There are two commenting formats in php:There are two commenting formats in php:  Single line commentSingle line comment //………………////………………//  Multi lines commentMulti lines comment /*…………./*…………. …………………………………….*/.*/
  • 9. Keep In mind:Keep In mind:  Every language have print function, Php use “echo” keyword to print the statement.  A statement in php is any expression that is followed by a semicolon ”;”.  merge two statements with dot “.”.
  • 10. Simple programSimple program:: <?php // opening tag<?php // opening tag echo “introduction to Php”; // printecho “introduction to Php”; // print the statementthe statement ?> // closing tag?> // closing tag
  • 11. Php variable types:Php variable types: All variables in PHP are denoted with a leading dollar sign($).All variables in PHP are denoted with a leading dollar sign($). Php has a total of seven data types:Php has a total of seven data types: 1.1. Integers are whole numbers like (45, 67)Integers are whole numbers like (45, 67) 2.2. Doubles are floating point numbers like (58.4, 67.2)Doubles are floating point numbers like (58.4, 67.2) 3.3. Booleans have only two possible values either true or false.Booleans have only two possible values either true or false. 4.4. Null is a special type that only has one value: null.Null is a special type that only has one value: null. 5.5. Strings are sequences of characters .Strings are sequences of characters . 6.6. Arrays are named & indexed collections of different dataArrays are named & indexed collections of different data types.types. 7.7. Resources are special variables that hold references to resourceResources are special variables that hold references to resource external to php (such as database connections)external to php (such as database connections) Note:Note: variable name can consist of numbers, letters, underscores,variable name can consist of numbers, letters, underscores, but you cant use characters like (+,-,%,) etc.but you cant use characters like (+,-,%,) etc. There Is no size limit for variables.There Is no size limit for variables.
  • 12. Php constantsPhp constants  A constant is a name or identifier for a simple value. A constantA constant is a name or identifier for a simple value. A constant value can not change during the execution of the script.value can not change during the execution of the script.  To define the constant you have to use define() function.To define the constant you have to use define() function.  Constant identifiers are always in upper case.Constant identifiers are always in upper case.  You have not need to have a constant with a $.You have not need to have a constant with a $.  Constant define in single comma.Constant define in single comma. Example:Example: <?php<?php define(‘MINSIZE’, 50);define(‘MINSIZE’, 50); echo MINSIZE;echo MINSIZE; ?>?>
  • 13. Php Operators:Php Operators: Php supports following type of operators:Php supports following type of operators:  Arithmetic operatorsArithmetic operators  Comparison operatorsComparison operators  Logical operatorsLogical operators  Assignment operatorsAssignment operators  Conditional (or ternary) operatorsConditional (or ternary) operators

Editor's Notes

  1. n