How To Make A Directory In With Php Create Directories Scripts Code
- Forums
- PHP
- How To Make A Directory In With Php Create Directories Scripts Code
This Page Contains information about How To Make A Directory In With Php Create Directories Scripts Code By jack in category PHP with 1 Replies. [1107], Last Updated: Sat May 18, 2024
jack
Fri Feb 29, 2008
1 Comments
496 Visits
do you know how to create a directory using php.
i have this script and i want to be able to create a directory with my code
thanks
Description
bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context ]]] )
Attempts to create the directory specified by pathname.
PHP EXAMPLE
mkdir("/path/to/my/dir", 0700);
?>
for more information visit:
http://www.php.net/function.mkdir