Hey, can you tell me how to make a dir with PHP? Make a full code please, I am a newb with PHP. Something like mkdir(""); ?
-Laurence
int mkdir ( string pathname, int mode) That is: if(mkdir("/path/dirname", 0777)) echo "mkdir success\n"; else echo "mkdir failed\n";
Thanks, it works.