我正在尝试从网页制作一个简单的上传应用程序:localhost/test.html。我收到这些错误:
警告:move_uploaded_file(test/Blue hills.jpg):无法打开流:第 11 行的 C:\wamp\www\test.html 中没有这样的文件或目录
和
警告:move_uploaded_file(): Unable to move 'C:\wamp\tmp\php376.tmp' to 'test/Blue hills.jpg' in C:\wamp\www\test.html on line 11
这是我的代码
<html>
<form enctype="multipart/form-data" action="test.html" method="POST">
Please choose a file: <input name="uploaded" type="file" /><br />
<input type="submit" value="Upload" />
</form>
<html>
<?php
$target = "test/";
$target = $target . basename( $_FILES['uploaded']['name']) ;
$ok=1;
if(move_uploaded_file($_FILES['uploaded']['tmp_name'], $target)) {
echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded";
} else {
echo "Uploading Error.";
}