Hi,
I'm having a problem with the following:
if (file_exists("c:/myfile.txt"))
{
echo "yup, it's there";
}
else
{
echo "nope, can't find it";
}
It never finds the file. I have also tried :
c:\myfile.txt
Could it be anything to do with the way PHP is configured. If I load the file to the server it finds it no problem.
Thanks
Mike