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
How To Make A Directory In With Php Create Directories Scripts Code
How To Make A Directory In With Php Create Directories Scripts Code
How To Make A Directory In With Php Create Directories Scripts Code
Post Description:
Post Tags: how, to, make, a, directory, in, with, php, create, directories, scripts, code, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 107 Times Since Fri Feb 29, 2008 2:24 pm Posted By jack with 1 replies
Post Description:
Post Tags: how, to, make, a, directory, in, with, php, create, directories, scripts, code, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 107 Times Since Fri Feb 29, 2008 2:24 pm Posted By jack with 1 replies
| How To Make A Directory In With Php Create Directories Scripts Code |
Leave Your Comments
Comments and replies About How To Make A Directory In With Php Create Directories Scripts Code
:: 1 :: #43632 - Reply By hostman On Fri Feb 29, 2008 2:26 pm
if you want to create a directory you can use the mkdir() function available in php
Description
bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context ]]] )
Attempts to create the directory specified by pathname.
PHP EXAMPLE
for more information visit:
http://www.php.net/function.mkdir
Description
bool mkdir ( string $pathname [, int $mode [, bool $recursive [, resource $context ]]] )
Attempts to create the directory specified by pathname.
PHP EXAMPLE
<?php
mkdir("/path/to/my/dir", 0700);
?>
mkdir("/path/to/my/dir", 0700);
?>
for more information visit:
http://www.php.net/function.mkdir