首頁 > php教程 > PHP源码 > PHP 文件上传脚本

PHP 文件上传脚本

PHP中文网
發布: 2016-05-25 17:16:08
原創
1018 人瀏覽過

1.fileupload.php

<html>
 <head>
 <title>A File Upload Script</title>
 </head>
 <body>
 <div>
 <?php
 if ( isset( $_FILES[&#39;fupload&#39;] ) ) {
 
     print "name: ".     $_FILES[&#39;fupload&#39;][&#39;name&#39;]       ."<br />";
     print "size: ".     $_FILES[&#39;fupload&#39;][&#39;size&#39;] ." bytes<br />";
     print "temp name: ".$_FILES[&#39;fupload&#39;][&#39;tmp_name&#39;]   ."<br />";
     print "type: ".     $_FILES[&#39;fupload&#39;][&#39;type&#39;]       ."<br />";
     print "error: ".    $_FILES[&#39;fupload&#39;][&#39;error&#39;]      ."<br />";
 
     if ( $_FILES[&#39;fupload&#39;][&#39;type&#39;] == "image/gif" ) {
 
         $source = $_FILES[&#39;fupload&#39;][&#39;tmp_name&#39;];
         $target = "upload/".$_FILES[&#39;fupload&#39;][&#39;name&#39;];
         move_uploaded_file( $source, $target );// or die ("Couldn&#39;t copy");
         $size = getImageSize( $target );
 
         $imgstr = "<p><img width=\"$size[0]\" height=\"$size[1]\" ";
         $imgstr .= "src=\"$target\" alt=\"uploaded image\" /></p>";
 
         print $imgstr;
     }
 }
 ?>
 </div>
 <form enctype="multipart/form-data"
     action="<?php print $_SERVER[&#39;PHP_SELF&#39;]?>" method="post">
 <p>
 <input type="hidden" name="MAX_FILE_SIZE" value="102400" />
 <input type="file" name="fupload" /><br/>
 <input type="submit" value="upload!" />
 </p>
 </form>
 </body>
 </html>
登入後複製
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板