This script will shows when a page was last editted.
make a new file name it (yourpage.php)
We start at the top of the file
add
CODE
<?php
?>
?>
now after <?php add
CODE
$ftime = filemtime("yourpage.php"); //
now we use the date function do define the file date
CODE
echo("file was last modified on: ");
echo(date("m/j/y h:i", $ftime));
echo(date("m/j/y h:i", $ftime));
m/j/y h:i means
QUOTE
m - 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 03
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 03
Thats it..
have fun with it

