Home | Scripts | Tutorials | Books | Hosting | Forums | Links|

Navigation:

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Books
Sample Chapters
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links






 
 

SPONSORS



 
 

Display the date a page was last accessed

This code snippet will display the last access date of a specific file on the screen.

Here is the code for this example

<?php
//displays the time / date a page was last accessed
echo "Last viewed on: " . date( "D m/d/Y h:i:s a", fileatime( $PATH_TRANSLATED ) );
?>

and here is the output

Last viewed on: Wed 12/31/1969 07:00:00 pm

Display the date a page last modified

this code snippet will display the last modified date of a specific file

here is the code for this example

<?php
//displays the time/date a page was last modified
echo "Last modified on: " . date("D m/d/Y h:i:s", filemtime( $PATH_TRANSLATED ));
?>

and here is the output

Last modified on: Wed 12/31/1969 07:00:00