Hello, I amusing the following PHP code.. but I want to make it so that it also displays the time in 24 hr mode and the time is +3600 seconds. (1 hour)
<?
$last_modified = filemtime("about.php");
print("Last Updated ");
print(date("m/j/Y", $last_modified));
?>
How can I do this?
Thanks
Mike

