php求助 文件上传
哪里错了
<?php
header("content-type:text/html; charset=utf-8");
?>
<html>
<head><title>文件上传</title>
</head>
<body><form action="upload.php" method="post" enctype="multipart/form-data">
<div><label for="userfile">文件</label> <input type="file" name="userfile" /><input type="submit" value="上传" /></div>
</form>
</body>
</html>
<?php
if(is_uploaded_file($_FILES['userfile']['tmp_name']))
{
$file=$_FILES['userfile']['tmp_name'];
$fileurl="/lx/";
if(move_uploaded_file($file,$fileurl))
{
echo'成功';
}
else
{echo'移动失败';}
}
?>
报错上传
Warning : move_uploaded_file(/lx/) [ function.move-uploaded-file ]: failed to open stream: Is a directory in /home/u370929193/public_html/lx/upload.php on line 17
Warning : move_uploaded_file() [ function.move-uploaded-file ]: Unable to move '/tmp/phpKC51W4' to '/lx/' in /home/u370929193/public_html/lx/upload.php on line 17
移动失败