带有多个文件控件的表单提交

时间:2017-10-31 07:30:57

标签: php html

我尝试提交一个包含多个文件控件的表单。但是在提交表单时,它未成功提交。它是在没有完成的情况下长时间处理的。我在.php文件中有以下代码:

<! DOCTYPE html>
 <html>

 <body>
    <form action="upload.php" method="post" enctype="multipart/form-data">
    <input type="file" name="fileToUpload" id="fileToUpload">

    <input type="file" name="fileToUpload" id="fileToUpload">

     <input type="file" name="fileToUpload" id="fileToUpload">
    <input type="submit" value="Upload Image" name="submit">
    </form>
    </body>
</html>

2 个答案:

答案 0 :(得分:0)

在名称属性中添加括号:

<input type="file" name="fileToUpload[]" id="fileToUpload" multiple="multiple">

答案 1 :(得分:0)

您可以根据自己的要求更改此设置,并将其增加,

memory_limit = 256M
upload_max_size = 64M
post_max_size = 64M
upload_max_filesize = 64M
max_execution_time = 300
max_input_time = 1000

此所有设置都与文件上传有关。 我希望它有所帮助。