How To Make A Directory In With Php Create Directories Scripts Code


How To Make A Directory In With Php Create Directories Scripts Code
  Forums Index
      » PHP Forums
        » » 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
How To Make A Directory In With Php Create Directories Scripts Code
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

Leave Your Comments
* Your Name

  * Your Email Address (Will Not Be Published)

* Your Comments


Add Picture To Comments
Yes No             upload
Receive Replies on my Comments
(An email will be sent to you when someone replies to 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
<?php
mkdir("/path/to/my/dir", 0700);
?>


for more information visit:

http://www.php.net/function.mkdir