On my way to learning the mkdir();
function in PHP, I have created a folder on my server with a path like so
files/New\\\\
Now, I can not delete this for the life of me... I found one other post that said I would need to use
rmdir();
and escape the backslashes with more backslashes...
Needless to say, I can not get this to work... I had no idea that PHP added slashes through a post. I know from here forth I should use stripslashes();
but for now, I am stuck with two non deletable folders.
Any ideas guys?