|
|
| Copy the following code into any of your php pages. It will tell the user when that particular page was last modified.
<?
$file_last_modified = filemtime("$DOCUMENT_ROOT$PHP_SELF");
print("Last Modified ");
print(date("m/j/y h:i", $file_last_modified));
?>
|
|
|
|
|
|