1

Topic: Date and time a file was last accessed

Description
One line of code that will show when a file was last accessed. It will display it in the form Last accessed: Tuesday, February 17th, 2004 @ 12:51:37 am

The code

<?php

// Add this line to your php page

echo "Last accessed: " . date("l, F jS, Y @ h:i:s a",
fileatime($PATH_TRANSLATED));

?>