Home » Web development » PHP » PHP introduction and uses

PHP introduction and uses

uses of PHP

History and Introduction


It was initially created by Rasmus Lerdorf in 1994. As of today, the current version of PHP is version 5, with version 6 in the making. it is the most popular scripting language on the web.It was initially called Personal Home page

What is PHP?

PHP full form is PHP Hypertext Preprocessor. PHP is a widely-used, open source scripting language. It is similar in syntax to C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly .PHP scripts are executed on the server and return the html or plain text to the browser.Lets see now some uses of PHP

PHP features and Advantages

PHP is a power full language and it can do all the functions like

  • it can create, open, read, write, delete, and close files on the server
  • It can collect form data
  • it can send and receive cookies.It can set session key
  • It can connect to many database like oracle,mysql ,sql server to add, delete, modify data in your database
  • A complete username password system can be built over it to control user-access
  • It can encrypt/decrypt data
  • It has all the if else,loop construct to help generate the dynamic page content
  • It can not only generate output in HTML/text. It can output XHTML and XML.
See also  Top 51 Frequently Asked MySQL Interview Questions And Answers

Why PHP is useful and so famous?

There are various reason why PHP is so famous and used in all web development projects. The largest blogging platform wordpress is built over PHP

  • it runs on various platforms (Windows, Linux, Unix, Mac OS X,Solaris,Exalogic,ibm etc.)
  • it is compatible with almost all servers used today (Apache etc.)
  • it supports a wide range of databases. It can connect to oracle,mysql,sqlserver,sqllite etc
  • it is free. Download it from the official PHP resource: www.php.net
  • PHP learning curve is quite simple and we can use it quite efficiently as a language of website

As of now,  millions Internet domains had web services hosted on servers with PHP installed and mod_php was recorded as the most popular Apache HTTP Server module.


Some more Important terms in relation to php

  • php files have extension of .php
  • They are executed on the server and whatever output it generates is sent to browser.So the server is the brain here, not your browser
  • The php script can have html,java script,jquery
  • PHP is a scripting language, like HTML. That means that code does not need to be compiled before it gets used — it gets processed on the fly as necessaryIt is similar to .net, asp , mod_perl

Why I use PHP

So a question arises why I use PHP as my scripting language for web development. I use PHP because it is easy to learn, easy to develop and easy to host. It is free of cost and has a good community support. It just get my things done and apart from that it is great when you want to add little dynamic functionalists to your static web pages. You can find lots of resources , scripts and material online which you can use as reference while creating your code. You can even buy books if your budget allows. For now I am depending on web resources they are great but not a match of paid content which is generally more organized and well written. I have a functional knowledge of HTML and CSS and php just go great with them and it for now does what i am looking for. 

See also  How to Handle HTML forms with PHP

Here are some good reason to use PHP( Uses of PHP)

  1. It can easily works with html
  2. It is easy to learn
  3. it has lot of interactive features for visitor
  4. You can find lots of resources , scripts and material online which you can use as reference while creating your code
  5. it is a free language with no licensing fees so the cost of using it is minimal
  6. A good benefit of using PHP is that it can interact with many different database languages including MySQL.
  7. PHP also has very good online documentation with a good framework of functions in place

Hope you like this post on uses of PHP.

Also Reads
How to run php file in windows
php first program
https://en.wikipedia.org/wiki/PHP

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top