timestamp
Posted: Tue Feb 28, 2006 4:28 pm
This script show the time of the file last modify. So every PHP I write, I have to replace file.php to something else.
Is there possible way of not doing of not doing this?
Is there possible way of not doing of not doing this?
Code: Select all
<br><br>
<?php
$last_modified = filemtime("file.php");
print("Last Modified: ");
print(date("M-j-Y h:i:s", $last_modified));
?>