程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 文件上傳程序的全部源碼

文件上傳程序的全部源碼

編輯:PHP綜合
1.upfile.php文件

<html>
<body>
<title>文件上傳</title>
<form enctype="multipart/form-data" action=upload.php method=post>
<input type=file name=upfile size=10><br><br>
<input type=submit value='上載文件'>
</form>
</body>
</html>
2.upload.php
<?
//取得當前日期信息,並連接成為一個字符串
$datetime = getdate();
$time = implode("",$datetime);
//構造文件名
//$filename="uploadfiles/".$time." ".$upfile_name;
$filename="uploadfiles/".$upfile_name;
//將文件實際的存放在服務器上
$copymes = copy($upfile,$filename);
if ($copymes) {
    print("文件上傳成功!<br>n");
    print("文件名:$upfile_name<br>n");
    print("上傳的文件大小:$upfile_size<br>n");

}
else  print("文件上傳失敗!<br>n");

if (($upfile_type=="image/gif")||($upfile_type=="image/pjpeg"))
{
//如果是圖形文件格式則顯之
echo "<p><img src='";
echo $filename;
echo "'height=150 width=150 align=center border=0>";
}
?>

3.請在上面的那個文件所在目錄創建一個目錄 uploadfiles 就可以了  

【本文版權歸作者與奧索網共同擁有,如需轉載,請注明作者及出處】    
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved