If you want to create a folder with using PHP you can just use mkdir function of PHP to do it. as a first variable we define folder and then we define mod of folder.
<?PHP
mkdir("foldername", 0777);
?>
If you dont know what these numbers mean, you need to check CHMOD.
But some times because of authentication, you can not define CHMOD with mkdir function. The best way to create folder with PHP is using ftp.
function FTPmkdir($name, $mod = 777)
{
$path="/httpdocs/"; // location
$newDir=$name;
$server='255.255.255.255'; // server IP address
$connection = ftp_connect($server);
$user = ""; // FTP user name
$pass = ""; // FTP password
$result = ftp_login($connection, $user, $pass);
if ((!$connection) || (!$result)) {
return false;
exit();
} else {
if (!ftp_chdir($connection, $path)) {
$r = false;
} else if (!ftp_mkdir($connection,$newDir)) {
$r = false;
} else if (!ftp_site($connection, "CHMOD ".$mod."/".$path."/".$newDir))
{
$r = false;
} else {
$r = $newDir;
}
}
ftp_close($connection);
return $r;
}
Here you just need to send folder name to function. Also if you want you can send to CHMOD too. You need to type your server IP address, location for new folder, ftp user name and password.
Thats it.