可能重复:
无法在 PHP 中上传文件
我正在尝试学习用 PHP 编写文件上传脚本。我不知道为什么这不起作用。请看一看
<?php
$name=$_FILES["file"]["name"];
if(isset($name)) {
if(!empty($name)) {
echo $name;
}
else {
echo 'Please choose a file';
}
}
?>
它给出了一条错误消息Notice: Undefined index: file in
html部分是
<form action="submissions.php" method="POST" enctype="multipart/form-data">
<input type="file" name="file" id="file" />
<input type="submit" name="submit" value="Submit" /></form>
我在 Windows 上使用 wamp。错误的原因可能是什么?