程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 學習筆記:PHP上傳圖片代碼詳解

學習筆記:PHP上傳圖片代碼詳解

編輯:關於PHP編程

想知道上傳圖片代碼怎麼寫嗎,下面我就帶大家一起詳細分析一下吧。利用PHP,你總是可以有多種方式來完成某個特定的任務。我們就拿文件上傳舉個例子。當然了,你可以按照傳統的方式來使用HTTP文件上傳,把文件直接傳輸到Web服務器磁盤上。

你還可以用更加奇異的方式上傳,用FTP協議兩步就完成上傳:從你的本地硬盤到Web服務器,然後再到FTP服務器。PHP在本機同時支持FTP和HTTP上傳,所以你可以根據自己應用程序的設計需要進行最佳的選擇。使用PHP的FTP函數進行文件傳輸幾乎與使用傳統的FTP客戶端相同——你會看到連函數的名字都和標准的FTP命令類似。和大家分享一下PHP上傳圖片代碼的小例子,希望大家多多提意見嘿嘿謝謝了一起學習!!

PHP上傳圖片代碼:

  1. <?phpsession_start();?> 
  2.  
  3. <?php 
  4. $id=mysql_connect('localhost','root','585858');  
  5. mysql_select_db("okhwyy",$id);  
  6. mysql_query("setnamesgb2312");  
  7. ?> 
  8. <html> 
  9. <head> 
  10. <metahttp-equivmetahttp-equiv="Content-Type"c> 
  11. <title>限制上傳圖片的格式</title> 
  12. <styletypestyletype="text/css"> 
  13. <!--  
  14. .style1{  
  15. font-size:14px;  
  16. font-family:"華文行楷";  
  17. }  
  18. .style4{font-size:12px;font-weight:bold;}  
  19. --> 
  20. </style> 
  21. </head> 
  22. <body> 
  23. <tablewidthtablewidth="406"height="129"border="0"align="center"cellpadding="0"cellspacing="0"background=""> 
  24. <tr> 
  25. <tdwidthtdwidth="106"height="40"></td> 
  26. <tdwidthtdwidth="196"></td> 
  27. <tdwidthtdwidth="31"></td> 
  28. </tr> 
  29. <formnameformname="form1"method="post"action=""enctype="multipart/form-data"> 
  30. <tr> 
  31. <tdheighttdheight="32"align="right"><spanclassspanclass="style1">圖片路徑</span>:</td> 
  32. <tdvaligntdvalign="middle"><inputnameinputname="images"type="file"id="images2"size="15"> 
  33. <inputtypeinputtype="hidden"name="MAX_FILE_SIZE"value="30000"></td> 
  34. <td></td> 
  35. </tr> 
  36. <tr> 
  37. <tdheighttdheight="44"align="right"valign="middle"><spanclassspanclass="style4">圖片的格式</span>:</td> 
  38. <tdvaligntdvalign="middle"><spanclassspanclass="style4">(.jpg)</span><inputtypeinputtype="submit"name="Submit"value="提交"></td> 
  39. <td></td> 
  40. </tr> 
  41. </form> 
  42. <tr> 
  43. <tdheighttdheight="10"></td> 
  44. <td></td> 
  45. <td></td> 
  46. </tr> 
  47. </table> 
  48. <tablewidthtablewidth="406"height="129"border="1"align="center"cellpadding="0"cellspacing="0"> 
  49. <?php 
  50. $query="select*fromtb_image2whereidorderbydatadesclimit2";  
  51. $result=mysql_query($query);  
  52. if($result){  
  53. while($row=mysql_fetch_array($result)){  
  54. ?> 
  55. <tr> 
  56. <tdwidthtdwidth="106"align="center"><?phpecho$row[data];?></td> 
  57. <tdwidthtdwidth="196"align="center"><imgsrcimgsrc="<?phpecho$row[path];?>"width="200"height="120"></td> 
  58. </tr> 
  59. <?php}}?> 
  60. </table> 
  61.  
  62. </body> 
  63. </html> 
  64.  
  65. <?php 
  66. $Submit=$_POST[Submit];  
  67. if($Submit){  
  68. $image=$_FILES['images']['name'];  
  69. $datedate=date("Y-m-d");  
  70. $path="upfiles/".$_FILES['images']['name'];  
  71. $type=strstr($path,".");  
  72. $size=$_FILES['images']['size'];  
  73. if($size>1000000){echo"<script>alert('上傳容量超限');history.back();</script>";}  
  74. elseif($type!=".jpg"){echo"<script>alert('上傳類型不對');history.back();</script>";}  
  75. elseif(move_uploaded_file($_FILES['images']['tmp_name'],$path)){  
  76. $query="insertintotb_image2(image_name,path,data)values('$image','$path','$date')";  
  77. $result=mysql_query($query)ordie(mysql_error());  
  78. if($result){  
  79. echo"上傳成功!";  
  80. echo"<metahttp-equivmetahttp-equiv=&#92;"Refresh&#92;"content=&#92;"3;url=index.php&#92;">";  
  81. }  
  82. else{  
  83. echo"上傳失敗!";  
  84. echo"<metahttp-equivmetahttp-equiv=&#92;"Refresh&#92;"content=&#92;"3;url=index.php&#92;">";  
  85. }}}  
  86.  
  87. ?> 

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