PHP Programming

Hands On No. 1 : Hello World program in PHP

Hello World program in PHP

                               

<!DOCTYPE html>
<html>
<body>
<h1>PHP page</h1>

<?php

echo "Hi Hello world! NUV Students ";

print "Hi Hello world! NUV Students<br>";

?>

</body>
</html>