Mega Code Archive

 
Categories / Php / Code Snippets
 

Display when a page was last modified on your site

<?php $last_modified = filemtime("index.php"); print("Last Modified "); print(date("m/j/y h:i", $last_modified)); ?>