Hi All,
I am trying to display the date a page was last modified by using PHP. I am using a piece of code I read about somewhere. When I put it on my site, the same code produces different results on different pages.
The code below is the PHP code that I am using.
I get the result below on one page.Code:<?php //Display the date a page was last modified echo "Last modified on: " . date(" m F Y ", filemtime( $PATH_TRANSLATED )); ?>
And I get the result below on another page.Last modified on: 12 December 1969
My site is not that ancient and was not built in 1969. How can I correct that error and make it display properly please? Or can someone help me with a better code to achieve this please?Notice: Undefined variable: PATH_TRANSLATED in /usr/local/apache2/htdocs/demo/footer.php on line 22
Last modified on: 12 December 1969
Thanks in advance.
Menre




Reply With Quote