Thursday, 18 April 2013

What is PHP ???

PHP - Personnel Home Pages older name of php.

And Now it is Known as Hypertext PreProcessor.



PHP is the most widely used scripting language for web programming. 

PHP extends HTML pages by adding server-executed code segments to HTML pages.  

The output of the execution of the PHP code is merged into the HTML page.

PHP - Open Source Software. We don't have to pay any thing for using it. We can easily creates websites and web developement using PHP.

PHP - Which executes on the server.

The code is not shown in the view source of the page.

PHP is secure server side programming language.

PHP is easy to learn and use. we can easily embed it with HTML Page.

Example :-
<html>
<head><title>PHP with HTML</title>
</head>
<body>
<?php

//code of php


?>

</body>
</html>


No comments:

Post a Comment