[PHP] Re: filemtime() on Windows

2003-07-17 Thread Shawn McKenzie
Nevermind. I had a typo in the path. Sorry... -Shawn "Shawn McKenzie" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am trying to get the last modified time of an HTML file on my windows > machine. The file is in a sub dir of my script dir and I can use the same > path for file

[PHP] Re: filemtime -help

2002-12-12 Thread Mekrand
thanks "@ Edwin" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello, > > "Mekrand" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > i have a problem with filemtime function, i want script print out the date > > of file la

[PHP] Re: filemtime -help

2002-12-12 Thread @ Edwin
Hello, "Mekrand" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > i have a problem with filemtime function, i want script print out the date > of file last modified. > here is code, > $fp=fopen("ex.txt","r"); > echo date("j F Y H:i", filem

[PHP] Re: FILEMTIME

2002-08-08 Thread Lars Olsson
Mike Zagorski wrote: > Hello, > > I amusing the following PHP code.. but I want to make it so that it also displays >the time in 24 hr mode and the time is +3600 seconds. (1 hour) > > $last_modified = filemtime("about.php"); > print("Last Updated "); > print(date("m/j/Y", $last_modified)); > ?