Saturday, December 24, 2011

Define PHP

Definition: (Hyper Text Preprocessor)

PHP is an open source,serverside, HTML embedded web-scripting language that is compatible with all the major web servers. PHP enable you to embed code fragments in normal HTML pages-code that is interpreted as your pages are served up to users. PHP makes web pages to connect with server-side database.


Example


<html>
<head>
<title>
Example
</title>
</head>
<body>
<?php


print("Hello! this is my first php example");
   or
echo "Hello!this is my first php example";


?>
</body>


o/p
Hello! this is my first php example

No comments:

Post a Comment