Getting The Date Of Included Files
If you're using separate files in PHP via include or fopen then use this code to get the date the files were last modified on your main page:
$filemod = filemtime("filename");
echo "Last modified ";
echo date("j F Y", $filemod);