Tuesday 14 May 2013

What is PHP


Whenever anyone is learning PHP, the most common questions that first come up are: What is PHP? And how does it work?

It is precisely these questions we will look at in this lesson. It's a big help to understand such basics related to PHP before you start developing you own PHP pages. Such basic understanding will increase the speed of learning significantly.
So, let's get started!


What is PHP?

PHP was originally an acronym for Personal Home Pages, but is now a recursive acronym for PHP: Hypertext Preprocessor.
PHP was originally developed by the Danish Greenlander Rasmus Lerdorf, and was subsequently developed as open source. PHP is not a proper web standard - but an open-source technology. PHP is neither real programming language - but PHP lets you use so-called scripting in your documents.
To describe what a PHP page is, you could say that it is a file with the extension .php that contains a combination of HTML tags and scripts that run on a web server.

How does PHP work?

The best way to explain how PHP works is by comparing it with standard HTML. Imagine you type the address of an HTML document (e.g.http://www.rozainfotech.com/index.html) in the address line of the browser. This way you request an HTML page. It could be illustrated like this:



As you can see, the server simply sends an HTML file to the client. But if you instead type http://www.rozainfotech.com/index.php - and thus request an PHP page - the server is put to work:


The server first reads the PHP file carefully to see if there are any tasks that need to be executed. Only when the server has done what it is supposed to do, the result is then sent to the client. It is important to understand that the client only sees the result of the server's work, not the actual instructions.

This means that if you click "view source" on a PHP page, you do not see the PHP codes - only basic HTML tags. Therefore, you cannot see how a PHP page is made by using "view source". You have to learn PHP in other ways, for example, by reading this article(tutorial).

What you learn in this tutorial is to write commands to a server!
So, the first thing you need to get a hold of is... a server! But don't worry - you don't need to buy a new computer. You just need to install some software on your computer that makes it function as a server. Another option is to have a website on a hosted server that supports PHP. Then you just need to be online while coding.

The next lesson is about how to get start with PHP



7 comments:

  1. Its been very informative..Thanks dude..:)

    ReplyDelete
  2. thanx bro...i want to learn more...do post such things at regular intervals....

    ReplyDelete
  3. Subscribe my updates via email...
    http://feedburner.google.com/fb/a/mailverify?uri=blogspot/VwAMz

    ReplyDelete
  4. Very good post for learning basic of php.

    ReplyDelete
  5. hey grt job...
    its vry helpful 4 learning php......

    ReplyDelete