hello php scripters i would like to create a script that will make another directory based on the name given from the form.
well i already know about php but havent tried the making directory function.
its bascially something like this
$path = "/usr/web/ftp/inbox/";
$projectNameCode = "revilo";
$makeThis = $path.$projectNameCode;
mkdir("$makeThis", 0775);
this code gives me error like this
Warning: mkdir(/usr/web/ftp/inbox/revilo): No such file or directory in /usr/local/apache/htdocs/mkdir.php on line 4
can u tell me whats wrong and what should i do to fix this?
thank you in advance