hey i was woundering if it was possible / if there is any form of codeing which would show when a page was last updated (with out it having to be manually changed (its kind of an audit / security requirment))
thanks in advance
hey i was woundering if it was possible / if there is any form of codeing which would show when a page was last updated (with out it having to be manually changed (its kind of an audit / security requirment))
thanks in advance
You could use a serverside language (like PHP) to find the last modified date from the file, if that's what you want. Otherwise you need to have a content management system ('CMS') of some sort that tracks when you edit content and stores it in a database (etc.).
Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum
Heres a lil' script in PHP that displays the last modification time:
More info:PHP Code:
<?php
echo date("h:i:s", getlastmod());
?>
http://www.php.net/
http://uk3.php.net/getlastmod
http://uk.php.net/manual/en/function.date.php
thanks guys!
Bookmarks