Why writes the script 'does not exist' error? The file is exists on the local machine.
My test code is:
Thanx!PHP Code:$filename = "c:\\test\\test.txt";
if (file_exists($filename)) {
print "The file $filename exists";
} else {
print "The file $filename does not exist";
}






Bookmarks