Re: [PHP] site last updated

2001-11-04 Thread Rudi Ahlers
PROTECTED] Sent: Sunday, November 04, 2001 7:32 AM Subject: Re: [PHP] site last updated On Saturday 03 November 2001 21:12, Steve Werby wrote: Ryan Christensen [EMAIL PROTECTED] wrote: You can do this in a per-page basis w/: $modified = stat(yourfile.html); echo date(l, F dS,$modified

RE: [PHP] site last updated

2001-11-04 Thread ArsenKirillov
new articles on my site). And this is really date of SITE last modify ... -Original Message- From: Rudi Ahlers [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 04, 2001 12:13 PM To: Chip; [EMAIL PROTECTED] Subject: Re: [PHP] site last updated Would there be a way of adding one

RE: [PHP] site last updated

2001-11-03 Thread Ryan Christensen
You can do this in a per-page basis w/: $modified = stat(yourfile.html); echo date(l, F dS,$modified[9]); (As with most things ;).. this can be found in the manual. Check @ php.net/stat for more info.. %Ryan -Original Message- From: oliver walkhoff [mailto:[EMAIL PROTECTED]]

Re: [PHP] site last updated

2001-11-03 Thread Steve Werby
Ryan Christensen [EMAIL PROTECTED] wrote: You can do this in a per-page basis w/: $modified = stat(yourfile.html); echo date(l, F dS,$modified[9]); Also see getlastmod() and filemtime(). -- Steve Werby President, Befriend Internet Services LLC http://www.befriend.com/ -- PHP General

Re: [PHP] site last updated

2001-11-03 Thread Chip
On Saturday 03 November 2001 21:12, Steve Werby wrote: Ryan Christensen [EMAIL PROTECTED] wrote: You can do this in a per-page basis w/: $modified = stat(yourfile.html); echo date(l, F dS,$modified[9]); Also see getlastmod() and filemtime(). I am interested in this also. I understand

Re: [PHP] site last updated

2001-11-03 Thread speedboy
last modified ?php echo date(D d-m-Y H:i:s, filectime(__FILE__)); ? ^ I put that on the bottom of every page on some sites I make. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list