PHP Tutorial
The PHP Hypertext Preprocessor
(PHP) is a programming language that allows web developers to create dynamic
content that interacts with databases. PHP is basically used for developing web
based software applications. This tutorial helps you to build your base with
PHP.
<html>
<head>
<title>PHP Script Execution</title>
</head>
<body>
<?php
echo "<h1>Hello, PHP!</h1>";
?>
</body>
</html>