Can someone help me with some php code?

  • Thread starter Thread starter logo2462
  • Start date Start date
L

logo2462

Guest
Can you help me with some php code?
My code is
<html>
<body>
<?php
date_default_timezone_set("America/Den…
$i=1;
while($i<5)
{
sleep(1);
echo(date("l dS \of F Y h:i:s A") . "<br />")
}
?>
</body>
</html>

I want it to keep the time up to date, without it making the page infinity length. So I need to replace the part I have already written. Does anyone know how to do this with php/html/javascript?
 
Back
Top