I've noticed filemtime doesnt work on Windows, but works fine on Unix/Linux
My webhost is Unix but I do all my testing offline on Windows (w apache), so I'd be nice to test out somethings on the Windows box with that function before
I did a search on the forums and couldnt get a definate answer or fix to this for Windows. The files do exist because im basically making a directory read out (it lists all the files and should sort by modified date).
also I use something like this to get the modified file time in a format i prefer
...
date('MdYhis', filemtime($file))
...