I had used the code below to create a directory:
Code:
$username = strtolower($_SESSION["loginUsername"]);
$dir = "\\instructor\\" . $username;
if(!file_exists($dir)
mkdir($dir,0700);
before adding "\\instructor\\" . to the $dir varible it was working,
but because I want the folder to be created inside anothyer folder which is instructor folder I add this peice of code, but now it is not working..
Do somebody know what is the problem?????