Hi,
i have a problem with mkdir function:
i create a directory with
if(!(mkdir("/path/$form_dirname", 0777))) {
echo("Directory doesnt exist");
}
Everything fine so far, but the directory created by this script has drwxr-xr-x
and so i cant write files into it, and cant delete it...
i thought 0777 should be drwxrwxrwx.
Where am i wrong?
Thanks for help, Martin