SlideShare a Scribd company logo
1 of 21
PRESENTED BY
S.V.MALLIKHARJUNA
16HR1A0547
AGENDA
 INTRODUCTION
 TYPES OF SCRIPTING LANGUAGES
 FEATURES OF PHP
 BASIC SYNTAX OF PHP
 INSTALLIATION OF PHP
 HOW TO RUN PROGRAM IN PHP
 ADVANTAGES OF PHP
 DISADVANTAGES OF PHP
 CONCLUSION
INTRODUCTION TO PHP
 PHP stands for” hyper text pre-processor” or” personal home page”.
 PHP is a server side scripting language.
 PHP is used to develop dynamic web applications(website +database) and
interactive web pages.
 It was originally created by “RASMUS LERDORF” in 1994.
 PHP is a loosely typed language or weakly typed language.
 PHP current version is 7.4 release date is 28-nov-2019 and Supported until
28-nov-2022.
 PHP featue release 8.0 version release date Q4 2020 or Q1 2021 and
Supported until Q4 2023 or Q1 2024
TYPES OF SCRIPTING LANUAGE
 There are two types of scripting language.
 Client side scripting language.
 Server side scripting language.
 Client side scripting language:The programming which will execute within a
“web browser” is called as Client side scripting language.
 Example:javascript
 Server side scripting language: The programming which will execute within a
“web server” is called as server side scripting language.
 Example:PHP,DOTNET..etc
FEATURES OF PHP
 It is most popular and frequently used world wide scripting language.The main reason of
popularityis it is open source and very simple.
 Simple: It is very simple and easy to use, compare to other scripting language it is very simple
and easy, this is widely used all over the world.
 Faster: It is faster than other scripting language e.g. asp and jsp.
 Open source: Open source means you no need to pay for use php, you can free download and
use.
 Platform independent: PHP code will be run on every platform, Linux, Unix, Mac OS X,
Windows.
 Loosely typed language: PHP supports variable usage without declaring its data type. It will
be taken at the time of the execution based on the type of data it has on its value.
 For example $a=‘hello’
 echo $a
BASIC SYNTAX OF PHP
 <? Php -----------(opening tag)
 Echo “bvsr”;
 ?> ---------------(closing tag)
INSTALLIATION OF PHP
 we can install “XAMPP”
 X means:cross platform or platform independent.
 A means:apache.
 M means:mysql.
 P means:perl.
 P means:PHP.
 For emaple simple php program
 <!DOCTYPE html>
 <head>
 <title> registrationform</title>
 </head>
 <body>
 <form method="post">
Con..
 Enter Name:<input type="text" name="txt1"/>
 <br><br>
 Enter Email:<input type="email" name="txt2"/>
 <br><br>
 Enter Password:<input type="password" name="pwd"/>
 <br><br>
 <input type="submit" value="Register"name="btn"/>
 </form>
 </body>
 </html>
Con…
 <?php
 $conn=mysqli_connect("localhost","root","","user");
 if(isset($_POST['btn']))
 {
 $name=$_POST['txt1'];
 $email=$_POST['txt2'];
 $password=$_POST['pwd'];
 $query="insert into
register2(name,email,pwd)values('$name','$email','$password')";
Con….
 if(mysqli_query($conn,$query))
 {
 echo"register sucessfully";
 }
 else
 {
 echo"not register";
 }
 }
 ?>
HOW TO RUN PROGRAM IN PHP
 URL OPEN.
 SERVER MUST BE ON.
 URL ADDRESS:127.0.0.1/folder name/file name
 Or
 Local host/folder name/file name
Con…
Con..
Con..
Con..
Con…
ADVANTAGES OF PHP
 Cross-Platform:
PHP is, an application can be run on various platforms.
 Ease of use:Any individuals who are new to programming can easily learn to
use them within a short duration of time. The syntax for programming in the
hypertext preprocessor is quite similar to the C programming language. So the
individual who Is familiar with C can easily create PHP website scripts.
 Open source and Powerful library support
 Portability(platform independent)
 Third-party application support
DISADVANTAGES OF PHP
 Weak type: By the way, the PHP preprocessor hypertext language was
created, it’ll be tough to use it to program large applications. Since the
programming language isn’t extremely modular, large applications created
out of the programming language are tough to keep up. Furthermore, it’s so
an excellent language for web site scripting and developing small
applications.
 Poor Error Handling:It is widely believed by the developers that PHP has a
poor quality of handling errors. PHP lacks debugging tools, which are needed
to search for errors and warnings. PHP has less number of debugging tools
when compared to other programming languages.
CONCLUSION
 PHP is one of the most popular programming languages. It is currently being
used by a large number of individual for creating numerous types of
applications.
 It is primarily used as a server-side scripting language for websites. There are
however some advantages and disadvantages of PHP framework. To reap the
PHP benefits, select the best PHP website development company who
provides customized PHP website development services at pocket-friendly
prices.
PHP Presentation Covers Features, Syntax, Installation & More

More Related Content

What's hot

What's hot (19)

PHP vs ASP.NET
PHP vs ASP.NETPHP vs ASP.NET
PHP vs ASP.NET
 
PHP Basics
PHP BasicsPHP Basics
PHP Basics
 
Advantages of Choosing PHP Web Development
Advantages of Choosing PHP Web DevelopmentAdvantages of Choosing PHP Web Development
Advantages of Choosing PHP Web Development
 
Introduction to PHP Basics
Introduction to PHP BasicsIntroduction to PHP Basics
Introduction to PHP Basics
 
PHP Application Development will never fade out. Find out why
PHP Application Development will never fade out. Find out whyPHP Application Development will never fade out. Find out why
PHP Application Development will never fade out. Find out why
 
Php web development
Php web developmentPhp web development
Php web development
 
Tech talk webtech
Tech talk webtechTech talk webtech
Tech talk webtech
 
PHP Summer Training Presentation
PHP Summer Training PresentationPHP Summer Training Presentation
PHP Summer Training Presentation
 
Php: An Introduction
Php: An IntroductionPhp: An Introduction
Php: An Introduction
 
Uses for scripting languages,web scripting in perl
Uses for scripting languages,web scripting in perlUses for scripting languages,web scripting in perl
Uses for scripting languages,web scripting in perl
 
Overview of php
Overview of phpOverview of php
Overview of php
 
QBASIC
QBASICQBASIC
QBASIC
 
Php training in chandigarh
Php training in chandigarhPhp training in chandigarh
Php training in chandigarh
 
PHP Project PPT
PHP Project PPTPHP Project PPT
PHP Project PPT
 
Web programming by kiran and team
Web programming by kiran and teamWeb programming by kiran and team
Web programming by kiran and team
 
Php courses in cegonsoft
Php courses in cegonsoftPhp courses in cegonsoft
Php courses in cegonsoft
 
Top 10 programming languages
Top 10 programming languagesTop 10 programming languages
Top 10 programming languages
 
Php Ppt
Php PptPhp Ppt
Php Ppt
 
Training ppt
Training pptTraining ppt
Training ppt
 

Similar to PHP Presentation Covers Features, Syntax, Installation & More

Php hypertext pre-processor
Php   hypertext pre-processorPhp   hypertext pre-processor
Php hypertext pre-processorSiddique Ibrahim
 
unitI-Introduction to php.pptx
unitI-Introduction to php.pptxunitI-Introduction to php.pptx
unitI-Introduction to php.pptxnehasahuji
 
PHP Training In Chandigarh.docx
PHP Training In Chandigarh.docxPHP Training In Chandigarh.docx
PHP Training In Chandigarh.docxExcellence Academy
 
PHP Web Development.pdf
PHP Web Development.pdfPHP Web Development.pdf
PHP Web Development.pdfSonia Simi
 
PHP Training In Chandigar1.docx
PHP Training In Chandigar1.docxPHP Training In Chandigar1.docx
PHP Training In Chandigar1.docxExcellence Academy
 
PHP for web development
PHP for web development PHP for web development
PHP for web development loviedigital
 
PHP: Hypertext Preprocessor Introduction
PHP: Hypertext Preprocessor IntroductionPHP: Hypertext Preprocessor Introduction
PHP: Hypertext Preprocessor IntroductionOto Brglez
 
PHP Vs ASP.NET : How to Choose the Right One?
PHP Vs ASP.NET: How to Choose the Right One?PHP Vs ASP.NET: How to Choose the Right One?
PHP Vs ASP.NET : How to Choose the Right One?netdroidtech
 
Function of PHP in Website Development
Function of PHP in Website DevelopmentFunction of PHP in Website Development
Function of PHP in Website DevelopmentEffOne_Technologies
 
Difference Between Asp.Net and PHP
Difference Between Asp.Net and PHP Difference Between Asp.Net and PHP
Difference Between Asp.Net and PHP Rosalie Lauren
 
Hire PHP Developer India for smart, reliable and Professional Web Development
Hire PHP Developer India for smart, reliable and Professional Web DevelopmentHire PHP Developer India for smart, reliable and Professional Web Development
Hire PHP Developer India for smart, reliable and Professional Web DevelopmentAResourcePool
 
Why do businesses choose PHP as their development language?
Why do businesses choose PHP as their development language?Why do businesses choose PHP as their development language?
Why do businesses choose PHP as their development language?AResourcePool
 

Similar to PHP Presentation Covers Features, Syntax, Installation & More (20)

Php hypertext pre-processor
Php   hypertext pre-processorPhp   hypertext pre-processor
Php hypertext pre-processor
 
unitI-Introduction to php.pptx
unitI-Introduction to php.pptxunitI-Introduction to php.pptx
unitI-Introduction to php.pptx
 
PHP Training In Chandigarh.docx
PHP Training In Chandigarh.docxPHP Training In Chandigarh.docx
PHP Training In Chandigarh.docx
 
PHP Web Development.pdf
PHP Web Development.pdfPHP Web Development.pdf
PHP Web Development.pdf
 
PHP
PHPPHP
PHP
 
PHP Training In Chandigar1.docx
PHP Training In Chandigar1.docxPHP Training In Chandigar1.docx
PHP Training In Chandigar1.docx
 
Php unit i
Php unit i Php unit i
Php unit i
 
01 Php Introduction
01 Php Introduction01 Php Introduction
01 Php Introduction
 
PHP for web development
PHP for web development PHP for web development
PHP for web development
 
PHP: Hypertext Preprocessor Introduction
PHP: Hypertext Preprocessor IntroductionPHP: Hypertext Preprocessor Introduction
PHP: Hypertext Preprocessor Introduction
 
PHP Vs ASP.NET : How to Choose the Right One?
PHP Vs ASP.NET: How to Choose the Right One?PHP Vs ASP.NET: How to Choose the Right One?
PHP Vs ASP.NET : How to Choose the Right One?
 
Function of PHP in Website Development
Function of PHP in Website DevelopmentFunction of PHP in Website Development
Function of PHP in Website Development
 
Difference Between Asp.Net and PHP
Difference Between Asp.Net and PHP Difference Between Asp.Net and PHP
Difference Between Asp.Net and PHP
 
Hire PHP Developer India for smart, reliable and Professional Web Development
Hire PHP Developer India for smart, reliable and Professional Web DevelopmentHire PHP Developer India for smart, reliable and Professional Web Development
Hire PHP Developer India for smart, reliable and Professional Web Development
 
Php ppt
Php pptPhp ppt
Php ppt
 
PHP programmimg
PHP programmimgPHP programmimg
PHP programmimg
 
PHP
PHPPHP
PHP
 
PHP TRAINING
PHP TRAININGPHP TRAINING
PHP TRAINING
 
Php course with live project training in janakpuri, New Delhi
Php course with live project training in janakpuri, New Delhi Php course with live project training in janakpuri, New Delhi
Php course with live project training in janakpuri, New Delhi
 
Why do businesses choose PHP as their development language?
Why do businesses choose PHP as their development language?Why do businesses choose PHP as their development language?
Why do businesses choose PHP as their development language?
 

Recently uploaded

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 

Recently uploaded (20)

CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 

PHP Presentation Covers Features, Syntax, Installation & More

  • 2. AGENDA  INTRODUCTION  TYPES OF SCRIPTING LANGUAGES  FEATURES OF PHP  BASIC SYNTAX OF PHP  INSTALLIATION OF PHP  HOW TO RUN PROGRAM IN PHP  ADVANTAGES OF PHP  DISADVANTAGES OF PHP  CONCLUSION
  • 3. INTRODUCTION TO PHP  PHP stands for” hyper text pre-processor” or” personal home page”.  PHP is a server side scripting language.  PHP is used to develop dynamic web applications(website +database) and interactive web pages.  It was originally created by “RASMUS LERDORF” in 1994.  PHP is a loosely typed language or weakly typed language.  PHP current version is 7.4 release date is 28-nov-2019 and Supported until 28-nov-2022.  PHP featue release 8.0 version release date Q4 2020 or Q1 2021 and Supported until Q4 2023 or Q1 2024
  • 4. TYPES OF SCRIPTING LANUAGE  There are two types of scripting language.  Client side scripting language.  Server side scripting language.  Client side scripting language:The programming which will execute within a “web browser” is called as Client side scripting language.  Example:javascript  Server side scripting language: The programming which will execute within a “web server” is called as server side scripting language.  Example:PHP,DOTNET..etc
  • 5. FEATURES OF PHP  It is most popular and frequently used world wide scripting language.The main reason of popularityis it is open source and very simple.  Simple: It is very simple and easy to use, compare to other scripting language it is very simple and easy, this is widely used all over the world.  Faster: It is faster than other scripting language e.g. asp and jsp.  Open source: Open source means you no need to pay for use php, you can free download and use.  Platform independent: PHP code will be run on every platform, Linux, Unix, Mac OS X, Windows.  Loosely typed language: PHP supports variable usage without declaring its data type. It will be taken at the time of the execution based on the type of data it has on its value.  For example $a=‘hello’  echo $a
  • 6. BASIC SYNTAX OF PHP  <? Php -----------(opening tag)  Echo “bvsr”;  ?> ---------------(closing tag)
  • 7. INSTALLIATION OF PHP  we can install “XAMPP”  X means:cross platform or platform independent.  A means:apache.  M means:mysql.  P means:perl.  P means:PHP.  For emaple simple php program  <!DOCTYPE html>  <head>  <title> registrationform</title>  </head>  <body>  <form method="post">
  • 8. Con..  Enter Name:<input type="text" name="txt1"/>  <br><br>  Enter Email:<input type="email" name="txt2"/>  <br><br>  Enter Password:<input type="password" name="pwd"/>  <br><br>  <input type="submit" value="Register"name="btn"/>  </form>  </body>  </html>
  • 9. Con…  <?php  $conn=mysqli_connect("localhost","root","","user");  if(isset($_POST['btn']))  {  $name=$_POST['txt1'];  $email=$_POST['txt2'];  $password=$_POST['pwd'];  $query="insert into register2(name,email,pwd)values('$name','$email','$password')";
  • 10. Con….  if(mysqli_query($conn,$query))  {  echo"register sucessfully";  }  else  {  echo"not register";  }  }  ?>
  • 11. HOW TO RUN PROGRAM IN PHP  URL OPEN.  SERVER MUST BE ON.  URL ADDRESS:127.0.0.1/folder name/file name  Or  Local host/folder name/file name
  • 13. Con..
  • 14. Con..
  • 15. Con..
  • 16.
  • 18. ADVANTAGES OF PHP  Cross-Platform: PHP is, an application can be run on various platforms.  Ease of use:Any individuals who are new to programming can easily learn to use them within a short duration of time. The syntax for programming in the hypertext preprocessor is quite similar to the C programming language. So the individual who Is familiar with C can easily create PHP website scripts.  Open source and Powerful library support  Portability(platform independent)  Third-party application support
  • 19. DISADVANTAGES OF PHP  Weak type: By the way, the PHP preprocessor hypertext language was created, it’ll be tough to use it to program large applications. Since the programming language isn’t extremely modular, large applications created out of the programming language are tough to keep up. Furthermore, it’s so an excellent language for web site scripting and developing small applications.  Poor Error Handling:It is widely believed by the developers that PHP has a poor quality of handling errors. PHP lacks debugging tools, which are needed to search for errors and warnings. PHP has less number of debugging tools when compared to other programming languages.
  • 20. CONCLUSION  PHP is one of the most popular programming languages. It is currently being used by a large number of individual for creating numerous types of applications.  It is primarily used as a server-side scripting language for websites. There are however some advantages and disadvantages of PHP framework. To reap the PHP benefits, select the best PHP website development company who provides customized PHP website development services at pocket-friendly prices.