Re: [PHP] Re: Cannot show reuploaded image file on page unless manual refresh

2003-01-20 Thread Jim Lucas
M Subject: [PHP] Re: Cannot show reuploaded image file on page unless manual refresh > I wonder if appending time() would be better... granular to a second and > you save the filesystem lookup effort?? > > On Mon, 20 Jan 2003, Jim Lucas wrote: > > > I would add the modificati

[PHP] Re: Cannot show reuploaded image file on page unless manual refresh

2003-01-20 Thread Phil Powell
Tried that too, dude.. now the files are replicating themselves in the /profile/images folder! I am supposed to delete the old file and replace it with the new file, but instead I have old file & new file, and the association between profile and image is incorrect. Phil "Philip Hallstrom" <[EMAI

[PHP] Re: Cannot show reuploaded image file on page unless manual refresh

2003-01-20 Thread Philip Hallstrom
I wonder if appending time() would be better... granular to a second and you save the filesystem lookup effort?? On Mon, 20 Jan 2003, Jim Lucas wrote: > I would add the modification time of the file in question with > > filetime($filename); > > that way you will be sure to get a unique argurment.