我得到一个奇怪的错误,我的表单没有提交文件输入,我真的不明白为什么......
我已经在本地和远程服务器上进行了测试。
print_r($ _ POST)显示每个帖子,但那里没有文件......
html:
<form action="<?php echo $page_link; ?>" enctype="multipart/form-data" method="post" accept-charset="utf-8" class="example">
<label>Titulo</label>
<input type="text" name="title"/>
<label>Imagem </label>
<input name="test" type="file" size = '50'/>
<input name="thisID" type="hidden" value=""/>
<button class="submit_btn guardarbutonz" type="submit" name="submit_btn">guardar</button>
</form>
php:
if (isset($_POST['submit_btn']) and $_POST['thisID']=="") {
echo "<script>console.log('".print_r($_POST)."')</script>";
die();
}