chuongprocf
02-11-2009, 12:12 PM
em học PHP và làm 1 code như bên dưới nhung ko biết sai chỗ nào mà nó ko tạo đúng thư mục của value nhập vào
<?php
echo '<form action="index.php" method="POST">';
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
echo '<div><label for="name">Tên Thư Mục: </label></div><div><input type="text" name="name" id="name" /><br /><div>';
echo '<input type="submit" name="submit" value="Tạo" />';
echo '</form>';
if( isset($_POST['submit'])) {
{
$path = './';
if(!is_dir($path.'".$_POST["name"]."'))
{mkdir($path.'".$_POST["name"]."');
chmod($path.'".$_POST["name"]."',0775);}
}
}
?>
ai xem và sửa giùm em nha
<?php
echo '<form action="index.php" method="POST">';
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
echo '<div><label for="name">Tên Thư Mục: </label></div><div><input type="text" name="name" id="name" /><br /><div>';
echo '<input type="submit" name="submit" value="Tạo" />';
echo '</form>';
if( isset($_POST['submit'])) {
{
$path = './';
if(!is_dir($path.'".$_POST["name"]."'))
{mkdir($path.'".$_POST["name"]."');
chmod($path.'".$_POST["name"]."',0775);}
}
}
?>
ai xem và sửa giùm em nha