PHP uses HTML5 for multi-file uploads

Source: Internet
Author: User
Before HTML does not come out, to implement PHP multi-file upload is troublesome, you need to add multiple input file fields in the form form. HTML5 release, we can use the input file HTML5 property multiple to achieve multi-file upload, the need for friends can refer to the following

First, let me introduce you to the multiple property of file in HTML5

Definition and usage

The Multiple property specifies that the input field can select multiple values. If you use this property, the field can accept multiple values.

Instance:

<form action= "demo_form.asp" method= "get" > select images: <input type= "file" Name= "img" multiple= "multiple"/& Gt <input type= "Submit"/></form>

The input file in the above instance can accept multiple upload fields.

To understand the multiple properties of file in HTML5, let's begin by explaining the use of HTML5 for multi-file uploads.

Instance code:

Html:

<! DOCTYPE html>

PHP Code:

for ($i =0; $i <count ($_files[' upload ' [' name ']), $i + +) {//get the temp file path $tmpFilePath = $_files[' upload '] [' Tmp_ Name '] [$i]; Make sure we have a filepath if ($tmpFilePath! = "") {  //setup our new file path  $newFilePath = "./uploadfiles/" . $_files[' upload ' [' name '] [$i];  Upload the file into the temp dir  if (Move_uploaded_file ($tmpFilePath, $newFilePath)) {   //handle other code here  } }}

Thank you for reading, hope to help everyone, thank you for the support of this site!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.