I want that system will display current time in (hh:mm:ss) format where 'hh' is for hours, 'mm' is for minutes', 'ss' is for seconds.
I have used time() function.
Here is my code :
<?php
$t=time();
echo($t);
?>
but it is displaying the current time as '1403245168'
Please help me out how can i change this time in another format. Thanks