PHP example: program source code for file upload-PHP Tutorial

Source: Internet
Author: User
PHP instance: Source code of the program for file upload. How to upload files? HTMLHEADTITLE file upload interface TITLEHEADBODYTABLECENTER? If ($ UploadAction) {$ UploadAction0; $ TimeLimit60; * sets the default timeout time

How to upload files?



File upload interface


If ($ UploadAction ){
$ UploadAction = 0;
$ TimeLimit = 60;
/* Set the default time-out period to 30 s. If the value is set to 0, the time-out period is not limited */
Set_time_limit ($ TimeLimit );
If ($ Upfile! = "None ")&&
($ Upfile! = ""))
{
$ Filepath = "d: webwebphpest"; // upload the file storage path
$ FileName = $ Filepath. $ Upfile_name;
If ($ Upfile_size <1024) // upload the file size
{$ FileSize = (string) $ Upfile_size. "byte ";}
Elseif ($ Upfile_size <(1024*1024 ))
{
$ FileSize = number_format (double) ($ Upfile_size/1024), 1). "KB ";
}
Else
{
$ FileSize = number_format (double) ($ Upfile_size/(1024*1024), 1). "MB ";
}
If (! File_exists ($ FileName ))
{
If (copy ($ Upfile, $ FileName ))
{Unlink ($ Upfile );
Echo"

";
Echo "file $ Upfile_name has been uploaded successfully! ";
Echo"

";
Echo "file location: $ FileName ";
Echo"

";
Echo "file size: $ FileSize ";
Echo"

";
}
Else
{Echo "file $ Upfile_name Upload failed! ";}
}
Else
{Echo "file $ Upfile_name already exists! ";}
}
Else
{Echo "you have not selected any file upload! ";}
Set_time_limit (30); // restores the default timeout value.
}
?>


Why? Html head title file upload interface/TITLE/head bodytablecenter? If ($ UploadAction) {$ UploadAction = 0; $ TimeLimit = 60;/* sets the default timeout period...

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.