1.upfile.php file
File Upload
2.upload.php
Gets the current date information and joins it as a string
$datetime = getdate ();
$time = Implode ("", $datetime);
Construct file name
$filename = "uploadfiles/". $time. " ". $upfile _name;
$filename = "uploadfiles/". $upfile _name;
Physically store the file on the server
$copymes = Copy ($upfile, $filename);
if ($copymes) {
Print ("File Upload succeeded!")
n ");
Print ("File name: $upfile _name
n ");
Print ("uploaded file size: $upfile _size
n ");
}
else print ("File upload failed!")
n ");
if ($upfile _type== "image/gif") | | ($upfile _type== "Image/pjpeg"))
{
If the graphic file format is
echo "
echo $filename;
echo "' height=150 width=150 align=center border=0>";
}
?>
3. Please create a directory in the directory where the file is located uploadfiles.
"The copyright of this article is owned by the author and house Orso near net, if need to reprint, please specify the author and source"
The above describes the file Transfer tool file upload program all the source code, including the file transfer tool aspects of the content, I hope that the PHP tutorial interested in a friend helpful.