Get file attributes after uploading a file

Source: Internet
Author: User

Upload file code:

1 <!DOCTYPE HTML Public "-//W3C//DTD XHTML 1.0 transitional//en" "http://www.w3.org/TR/xhtml1/DTD/ Xhtml1-transitional.dtd ">2 <HTMLxmlns= "http://www.w3.org/1999/xhtml">3 <Head>4 <Metahttp-equiv= "Content-type"content= "text/html; charset=utf-8" />5 <title>Untitled Document</title>6 </Head>7 8 <Body>9 <formAction= "doaction.php"Method= "POST"enctype= "Multipart/form-data">TenPlease select Upload file:<inputtype= "File"name= "MyFile" /><BR/> One   <inputtype= "Submit"value= "Upload" /> A </Body> - </HTML>

which

1 <  action= "doaction.php"  method= "POST"  enctype= "multipart /form-data ">23 enctype=" Multipart/form-data "Tell doaction.php, what format is the uploaded file

Go to doaction.php after uploading

1 <? PHP 2 // Files 3 Print_r ($_files);

Upload a file named "Himym.jpg" and get:

$filename =$_files[' myFile ' [' name ']; $type =$_files[' myFile ' [' type ']; $tmp _name=$_files[' myFile '] [' Tmp_name '];$ error=$_files[' myFile ' [' Error '], $size =$_files[' myFile ' [' Size '];

The resulting array can be used to determine what type and size of file can be uploaded.

Get file attributes after uploading a file

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.