包含文件时,POST数组为空

时间:2013-01-01 23:30:38

标签: php forms post file-upload

我有一个包含文件输入的简单HTML表单。在没有文件的情况下提交表单时,打印$_POST数组会显示所有提交的数据。但是,在提交文件时,$_POST不会打印出任何提交的数据。

有人可以告诉我为什么吗?这是我的代码:

<?php
    print_r($_POST);
?>
<form action="test.php" method="post" enctype="multipart/form-data">
    <label for="myfile">Video File:</label>
    <input type="file" name="myfile" />
    <br /><br />
    <label for="mytitle">Title:</label><br />
    <input type="text" name="mytitle" size="55" maxlength="60" />
    <br /><br />
    <input type="submit" name="mysubmit" value="Submit Video for Approval" />
</form>

2 个答案:

答案 0 :(得分:4)

你的脚本似乎很好。请检查您的服务器配置。也许您超过了POST限制(在php.ini中使用post_max_size设置)

答案 1 :(得分:3)

您必须使用$_FILES来访问上传的文件。

var_dump($_FILES); // Your uploaded files
var_dump($_POST);  // Your entered data