How to use time in PHP
This article describe about time() Function in PHP.
time() Function
This function return the current time as Unix timestamp.
Syntax
Parameter |
Description |
void |
Optional. |
Example
<html>
<body>
<?php
$t=time();
echo($t . "<br />");
echo(date("D F d Y",$t));
?>
</body>
</html> |
Output

You may also want to read these related articles Click here
Ask Your Question
Got a programming related question? You may want to post your question here
Programming Answers here