您好我是PHP的新手,我正在尝试上传图片,为什么我的PHP不识别我的文件?我的代码不会通过以下行:
}else if(isset($_FILES['newspic'])) {
我的Html在
之下<form action="post.php" method="POST">
Please complete your PAP below:<br />
<textarea id="post" name="post" rows="4" cols="60"></textarea><br />
Web Link: <input type="text" name="weblink" value="http:\\www."><br />
Tag: <input type="text" name="tag"><br />
Post Image: <input type="file" name="newspic"><br />
<input type="submit" name="send" value="Post" />
</form>
答案 0 :(得分:2)
添加:
enctype="multipart/form-data"
所以完整的代码是:
<form action="post.php" method="POST" enctype="multipart/form-data">
Please complete your PAP below:<br />
<textarea id="post" name="post" rows="4" cols="60"></textarea><br />
Web Link: <input type="text" name="weblink" value="http:\\www."><br />
Tag: <input type="text" name="tag"><br />
Post Image: <input type="file" name="newspic"><br />
<input type="submit" name="send" value="Post" />
</form>
也可以使用:
}else if(isset($_POST['newspic'])) {
或
}else if(isset($_FILES["newspic"]["name"])) {
答案 1 :(得分:0)
您需要在表单中添加enctype
以允许发送文件。
<form action="post.php" method="post" enctype="multipart/form-data">