File upload program all the source code

Source: Internet
Author: User
1.upfile.php file

<body>
<title> File Upload </title>
<form enctype= "Multipart/form-data" action=upload.php method=post>
<input type=file Name=upfile size=10><br><br>
<input type=submit value= ' upload file ' >
</form>
</body>
2.upload.php
?
Gets the current date information and joins it into a string
$datetime = getdate ();
$time = Implode ("", $datetime);
Construct file name
$filename = "uploadfiles/". $time. " ". $upfile _name;
$filename = "uploadfiles/". $upfile _name;
Put the file actually on the server
$copymes = Copy ($upfile, $filename);
if ($copymes) {
Print ("File upload successful!<br>n");
Print ("FileName: $upfile _name<br>n");
Print ("uploaded file Size: $upfile _size<br>n");

}
else print ("File upload failed!<br>n");

if ($upfile _type== "image/gif") | | ($upfile _type== "Image/pjpeg"))
{
If the graphic file format is significant
echo "<p>echo $filename;
echo "' height=150 width=150 align=center border=0>";
}
?>

3. Please create a directory in the directory above where the file is located uploadfiles.



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.