MKDIR Troubles
Posted: Thu Oct 05, 2006 9:20 pm
Hello,
I seem to be running into an odd issue. A previous coder was able to create directories sucessfully by using:
And yet I cant make a dir using
The 3 dirs I am trying to create are the test dir, test/cp, and test/profile
Any reason why example #1 works but #2 doesnt?
BTW- Example #2 is based in the doc root.
I seem to be running into an odd issue. A previous coder was able to create directories sucessfully by using:
Code: Select all
$dir = 'pending/' . date('l \\t\h\e jS \of F Y g:i a').'/';
mkdir($dir);Code: Select all
mkdir('/members/Test/');
mkdir('/members/Test/cp/');
mkdir('/members/Test/profile/');Any reason why example #1 works but #2 doesnt?
BTW- Example #2 is based in the doc root.