time example

time example

<?php
$seconds = date( "s",time());
$minute = date( "i",time());
$hour = date( "H",time());
print ("$hour:$minute:$seconds");
?>