Hi all
I am using Windows XP with LAMP setup and have been using the mkdir function to create folders on my hard disk, however, I cannot delete the folders now either by PHP or Windows Explorer and would like to know:
a) Why this is
b) How to delete them
c) How to prevent it from happening in the future
My Code that creates the folder is just this:
mkdir($path . "/" . $location . "/" . $foldername, 0777);
According to php.net the 'mode' part of the mkdir function is not applied with Windows.
Can someone explain what has happened?
Thanks
Doug