我是 PHP 新手,并从书中复制了这段代码。在文件 upload.html 中:
<form method="POST" action="do_upload.php" enctype="multipart/form-data">
<input type="file" name="img1" size="30"></p>
在 PHP 脚本 do_upload.php 中:
if($_FILES["img1"] != "") {
echo "file selected"; else die("Couldnot copy the file");
}
但我得到一个错误说:
未定义索引:第 2 行 C:\xampp\htdocs\test23\do_upload.php 中的 img1
为什么 img1 被称为undefined index
即使name="img1"
在 upload.html 中?