程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 文件上傳程序(二款簡單文件上傳程序)

php 文件上傳程序(二款簡單文件上傳程序)

編輯:關於PHP編程

php 文件上傳程序(二款簡單文件上傳程序)/*這二款文件上傳程序是非常簡單的,很適合初學者的學習php時的文件上傳實例教程哦。

php教程 文件上傳程序(二款簡單文件上傳程序)
/*
這二款文件上傳程序是非常簡單的,很適合初學者的學習php時的文件上傳實例教程哦。
*/

if(!$uploadaction):
?>

<html>
<head>
<title>文件上載界面</title>
</head>
<body>

<table>
<tr align="center">
<td><form enctype="multipart/form-data" name="submitform" action="upload.php" method="post">
<input type="hidden" name="max_file_size" value="1000000"><input type="hidden" name="uploadaction" value="1">
</td></tr>
<tr align="center">
<td><input name="uploadfile" type="file" size="30"></td>
</tr>
<tr align="center">
<td><input name="submit" value="提交" type="submit"></td>
<td><input name="reset" value="重置" type="reset"></td>
</tr>
</form>
</table>
</center>
</body>
</html>

<?
else:
?>

<html>
<head>
<title>文件上載代碼</title>
</head>
<body>

<?
$uploadaction=0;
echo "good!";
$timelimit=60; /*設置超時限制時間 缺省時間為30秒 設置為0時為不限時 */
set_time_limit($timelimit);

if(($uploadfile !="none" ))
{  
    $uploadpath=addslashes(dirname($path_translated))."upload"; //上載文件存放路徑

    $filename=$uploadpath.$uploadfile_name; //上載文件名

    if($uploadfile_size < 1024) //上載文件大小
    {
  $filesize=(string)$uploadfile_size." 字節"; 
 }
     elseif ($uploadfile_size <(1024 * 1024))
     {
  $filesize=number_format((double)($uploadfile_size/1024), 1) . " kb";
     }
  else{
  $filesize=number_format((double)($uploadfile_size / (1024 * 1024)), 1) . " mb";
     }
   
    if(!file_exists($filename))
    {
         if(copy($uploadfile,$filename))
         {  echo "文件 $uploadfile_name ($filesize)上載成功!"; }
         else
         { echo "文件 $uploadfile_name上載失敗!"; }

         unlink($uploadfile);
    }
    else
    { echo "文件 $uploadfile_name已經存在!"; }
}
else
{ echo "你沒有選擇任何文件上載!"; }

set_time_limit(30); //恢復缺省超時設置

?>

<br><a href = "upload.php">返回</a>

</body>
</html>

<?
endif;
?>

方法二

<html>
<head>
<title>文件上傳</title>
</head>
<body>
<table>
<form enctype="multipart/form-data" name=myform method="post">
<tr><td>文件上傳</td><td><input name="myfile" type="file"></td></tr>
<tr><td colspan="2"><input name="submit" value="上傳" type="submit">
</form>
<?php
if(isset($submit)){
 if($myfile != "none") {
  $upload_dir = "c:winnttemp";
  $up=copy($myfile,$upload_dir);
  if($up==1) {
   print("文件上傳成功!");
  }
  else {
   print ("文件上傳失敗.");
  }
  unlink ($myfile);
 }
 else {
  print("你沒有上傳任何文件");   
 }
}
?>
</td></tr>
</table>
</body>
</html>


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved