Last Updated
If you are using PHP and you would like a quick "Last Updated"line to be on the page, just place the following script in your html:
<?php date_default_timezone_set("EST"); echo date ("Y-m-j h:i:s A (T)", getlastmod()); ?>
The result will look like:
2006-12-3 11:24:28 PM (EST)
Or, if the command with the default time zone in it does not work, this one should do the same:
<?php echo date ("Y-m-j h:i:s A (T)", getlastmod()); ?>
The result will look like:
2006-12-3 11:24:28 PM (EST)
|