PHP is a server side language , and is a powerful tool for making dynamic Websites.
PHP stands for Hypertext Preprocessor
It is a widely-used because it is free (open source) and efficient alternative to competitors such as Microsoft's ASP. Also PHP can be embedded into HTML.
Here is simple example to print welcome to world of php.
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Example</title>
</head>
<body>
<?php
echo "Welcome to world of php.";
?>
</body>
</html>
No comments:
Post a Comment