First PHP Program

File index.php
<!DOCTYPE html>
<html>
<body>

<?php
  $d = date("H:i:s, D d/m/Y");
  print "Hello, it is $d";
?>

</body>
</html>