updating clock

a clock that updates

<HTML>
<HEAD>
<TITLE></TITLE>
<META HTTP-EQUIV="refresh" CONTENT=1"; URL=ih.php">
</HEAD>
<BODY>
<?php
Print "The time is: ";
$hour = date('H'); //hours.
$minute = date('i'); //minutes.
$seconds = date('s'); //seconds
$time = "$hour : $minute : $seconds"; //put them together
Print $time
?>
</BODY>
</HTML>