
as an incredibly simple example, i already have the below
Code: Select all
<?php
$filename = "temp.txt";
echo "<h1>".$filename."</h1>";
$date = date ("d/m/y H:i:s.", filemtime($filename));
echo "Last Modified: " . $date;
echo "</br></br>";
//echo file author
?>
Obviously if there was a function that directly linked to this would be the most helpful, although any other string value i could manipulate for this purpose would do as well(obivoulsy not the file name), as in my end product i'll need to be displaying a table with the file name, when it was last modified and also the name of the person who last modified it.
Many thanks
