Your first PHP program.

PHP is a server side language, can’t run on local machine without any server connectivity. It is very simple to start with PHP.

<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php echo ‘<p>This is my first program</p>’; ?>
</body>
</html>

Leave a comment