1.upfile.php檔案
檔案上傳 2.upload.php
//取得當前日期信息,並連接成為一個字串
$datetime = getdate( );
$time = implode("",$datetime);
//建構檔名
//$filename="uploadfiles/".$time." ".$upfile_name;
$filename="uploadfiles/".$upfile_name;
//將檔案實際的存放在伺服器上
$copymes = copy($upfile,$filename);
if ($copymes) {
print("檔案上傳成功!
n");
print("檔案名稱:$upfile_name
n");
print("上傳的檔案大小:$upfile_size
n ");
}
else print("檔案上傳失敗!
n");
if (($upfile_type=="image/gif")||( $upfile_type=="image/pjpeg"))
{
//如果是圖形檔案格式則顯之
echo "
";
}
?>
3.請在上面的那個檔案所在目錄建立一個目錄uploadfiles就可以了
【本文版權歸作者與奧索網共同擁有,如需轉載,請註明作者及出處】
http://www.bkjia.com/PHPjc/316434.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/316434.htmlTechArticle1.upfile.php檔案html body title檔案上傳/title form enctype=multipart/form-php檔案html body title檔案上傳/title form enctype=multipart/form-phpdatahtml action=load .php method=post input type=file name=upfile size=10brbr input type=submit value='上...