dan
Новичок
Дата регистрации:
30.01.2016 10:39:45
Сообщений: 5
<?php
if (isset($_POST["send"])) {
$login = $_POST["login"];
function makeDir($dir, $sDir) {
$list = glob($dir."/*"
print_r($list);
for ($i = 0; $i < count($list); $i++) {
if (is_dir($list[$i])) {
if ($list[$i] == "./".$sDir) { // проверка на совпадающие пути директорий!!!
$result = "Такой аккаунт уже существет!";
}
else {
mkdir($sDir);
chdir($sDir);
mkdir("video"
mkdir("music"
mkdir("photo"
chdir(".."
chdir(".."
}
}
}
}
chdir("accounts"
makeDir(".", $login);
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Калькулятор</title>
</head>
<body>
<?php if (isset($result)) echo $result; ?>
<form name="myform" action="index.php" method="post">
<p>
Логин: <input type="text" name="login" />
</p>
<p>
Пароль: <input type="password" name="pass" />
</p>
<p>
<input type="submit" name="send" value="Создать" />
</p>
</form>
</body>
</html>