Blessed 0 Report post Posted April 8, 2007 Simple Last ModifiedThis script will shows when a page was last editted. make a new file name it (yourpage.php)We start at the top of the fileadd <?php?>now after <?php add$ftime = filemtime("yourpage.php"); // now we use the date function do define the file dateecho("file was last modified on: "); echo(date("m/j/y h:i", $ftime));m/j/y h:i meansm - Numeric representation of a month, with leading zeros 01 through 12 h - hour, 12-hour format of an hour with leading zeros; 01 through 12 i - Minutes with leading zeros; dus "00" to "59" j - dag van de maand zonder nullen aan het begin; dus "1" tot "31" Y A full numeric representation of a year, 4 digits Examples: 1999 or 2003 y A two digit representation of a year Examples: 99 or 03Thats it..have fun with it Share this post Link to post Share on other sites
Imtay22 0 Report post Posted April 8, 2007 Ok thank you! I was wondering how to do that... I will be sure to use that on my site! Thank You~! Share this post Link to post Share on other sites
JDameron91 0 Report post Posted April 9, 2007 Wow, you really do "learn something new everyday." I didn't know that. And was just about to search for a tutorial on it. XD Anyways, nice, short, sweet tutorial. I look forward to any of your others. Share this post Link to post Share on other sites
Blessed 0 Report post Posted April 9, 2007 Thanx for support.i will try to add some more tutorials later Share this post Link to post Share on other sites