Sure, no problem. You can put this onto your page:
Last Modified: <?php echo date("j F Y H:i", filemtime($_SERVER["PATH_TRANSLATED"])); ?>
If that doesn't work, then try this:
Last Modified: <?php echo date("j F Y H:i", filemtime($_SERVER["SCRIPT_FILENAME"])); ?>
And if that doesn't work.. then try this one:
Last Modified: <?php echo date("j F Y H:i", filemtime($_SERVER["DOCUMENT_ROOT"].$_SERVER["PHP_SELF"])); ?>
** Don't forget that your page MUST have a .php file extension to "signal" to the server that it contains PHP code.
Cheers!
