i am posting this here so incase anyone wants to know how they can get the date when the file was created or updated.

for example lets say i have a file called webune.php and i wanted to know when it was created.

well, you find out when the file was created by using the filemtime() php functions.

$FileName = 'MyContacts.txt';
echo filemtime($FileName);

thats it