上传包含多个输入的文件

时间:2016-01-13 09:39:14

标签: php file-upload

我有一个表单,我想上传具有多个输入的文件。我的表单如下:

22

我不知道如何处理这张表格..

3 个答案:

答案 0 :(得分:0)

在您不包含'enctype =“multipart / form-data”'之前,您的表单不起作用,因为必须使用输入类型文件。

<form action="" method="post" enctype="multipart/form-data">
    <input type="file" name="tax" />
    <input type="file" name="ta" />
    <input type="submit" name="submit" />
</form>

现在浏览文件并提交表单。您将获得$ _FILES内的所有文件数据。所以要查看文件数据中的内容,可以使用:

echo '<pre>';
print_r($_FILES)

答案 1 :(得分:0)

我不确定您之前是否已阅读过这些教程,但下面是帮助您处理它的代码。

<form action="upload_file.php" method="post" enctype="multipart/form-data">
    <input type="file" name="tax" />
    <input type="file" name="ta" />
    <input type="submit" name="submit" />
</form>

如果您上传文件,则可以从

获取文件

$_FILES全局数组,即$ _FILES ['tax']和$ _FILES ['ta']。

可在php.net

上找到更多信息

答案 2 :(得分:0)

newLayer.backgroundColor = barColors[0].CGColor