Php file downloading-php Tutorial

Source: Internet
Author: User
Tags php file upload
Php file upload 1. Upload a common file using the original php file. (1) front-end code & lt; formactionupload_file.phpmethodpostenctypemultipartform-data & gt; & lt; labelforfile & gt; Filename: & lt; label & g php file Upload

I. normal file Upload method

Use the original php file to upload files.

(1) front-end code

      

?

(2) php code (upload_file.php)

    
  0) {          echo "Return Code: " . $_FILES["file"]["error"] . "
"; }else { echo "Upload: " . $_FILES["file"]["name"] . "
"; echo "Type: " . $_FILES["file"]["type"] . "
"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb
"; echo "Temp file: " . $_FILES["file"]["tmp_name"] . "
"; if (file_exists("upload/" . $_FILES["file"]["name"])){ echo $_FILES["file"]["name"] . " already exists. "; }else{ move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "Stored in: " . "upload/" . $_FILES["file"]["name"]; } } }else { echo "Invalid file"; } ?>
?

?

?

II. asynchronous file upload mode

The purpose is to use as few plug-ins as possible. Therefore, iframe is used to upload files asynchronously.

?

(1) front-end html

             

?

Function startUpload () {var spanObj = document. getElementById ("info"); spanObj. innerHTML = "start upload"; document. getElementById ("upForm "). sumbit ();} // callback function stopUpload (responseText) {var spanObj = document. getElementById ("info"); spanObj. innerHTML = "uploaded successfully"; spanObj. innerHTML = responseText ;}

?

(2) server code

$ File = $ _ FILES ['myfile']; $ fileName = uploadFile ($ file); // $ result = readFromFile (".. /upload /". $ fileName); echo"

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.