Multi-File upload system full version

Source: Internet
Author: User
<?php
Multi-File upload system full version
Powerful, can arbitrarily control the number of uploaded files, whether to overwrite
Prate
Mailbox: pjzhp@263.net
Include (".. /include/common.inc ");
$title = "Upload program for multiple files";
Include (".. /include/header.inc ");
Define the number of files allowed to be uploaded
Define ("Upload_no", 10);
Echo ("<p align=" center "><font size=" 4 "color=" #000080 "> Welcome! <br> can upload most at once. Upload_no. " File <br>if ($REQUEST _method!= "POST") {
Echo ("<form enctype=" Multipart/form-data "Method=post>n");
Echo ("<input type=" hidden "name=" max_file_size "value=" 3000000 ">n");
for ($i =1; $i <=UPLOAD_NO; $i) {
Echo ("<input type=file name=infile$i>");
if ($i%2==0)
Echo ("<br>n");
}
Echo ("<br><br><input type=" checkbox "Name=" Overload "value=" on "></font> <font color=" # ff0000 "> Overwrite files that already exist? </font> ");
Echo ("<br><br><input type=submit value= upload ></form>n");
}
else{
Processing uploads
$noinput = true;
for ($i =1; $noinput && ($i <=upload_no); $i) {
if (${"infile". $i}!= "None") $noinput = false;
}
if ($noinput) {
Echo ("<font size= 4" color= "#000080" > No files selected, return retry </font> ");
Exit ();
}
Echo ("<p align=" center ><font size= "4" color= "#000080" > Your selected file has been successfully uploaded to the server's temp directory! </font><br> ");
Echo ("<table border=" 1 "width=" 84% "height=" bordercolorlight= "#008080" bordercolordark= "#008080" >
<tr>
&LT;TD width= "14%" bgcolor= "#008000" height= "" ><font color= "#FFFFFF" > Document number </font></td>
&LT;TD width= "52%" bgcolor= "#008000" height= "" ><font color= "#FFFFFF" > File name </font></td>
&LT;TD width= "34%" bgcolor= "#008000" height= "" ><font color= "#FFFFFF" > File size </font></td>

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.