i would like to show a clock on the page that would be calll again and again its show a clock and should be show total elapsed time how can i do it
[PHP]
<?php
$t=time();
echo($t . "<br />");
?>
[/PHP]
i found only this ?
[PHP]
<?php
$t=time();
echo($t . "<br />");
?>
[/PHP]
i found only this ?
Comment