你不会相信这个错误,我不知道发生了什么。当我尝试上传文件时,其中一些拒绝上传。
<html>
<body>
<?php
var_dump($_POST);
if ($_POST['fileadd']){
echo "Type: " . $_FILES["file"]["type"] . "<br />";
print_r($_POST); echo "<br>"; print_r($_FILES);
}
?>
<form action="" method="POST"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" class="bigtext" style="width: 80%;">
<br>
<input type="submit" class="bigbutton" id="showloader" name="fileadd" value="Upload the song" />
</form>
</body>
</html>
这是在行动。 问题是当它说它不应该说的数组 0时。
另外,当我选择某些文件时,为什么$_POST
数组是nil/zero
,当它至少应该包含fileadd
在其中时,作为提交按钮的名称?