学习笔记:PHP上传图片代码详解

开发 后端
在编程中上传图片是必要的,文章这里详细的做出了关于PHP上传图片代码,希望对大家有帮助。

想知道上传图片代码怎么写吗,下面我就带大家一起详细分析一下吧。利用PHP,你总是可以有多种方式来完成某个特定的任务。我们就拿文件上传举个例子。当然了,你可以按照传统的方式来使用HTTP文件上传,把文件直接传输到Web服务器磁盘上。

#T#你还可以用更加奇异的方式上传,用FTP协议两步就完成上传:从你的本地硬盘到Web服务器,然后再到FTP服务器。PHP在本机同时支持FTP和HTTP上传,所以你可以根据自己应用程序的设计需要进行最佳的选择。使用PHP的FTP函数进行文件传输几乎与使用传统的FTP客户端相同——你会看到连函数的名字都和标准的FTP命令类似。和大家分享一下PHP上传图片代码的小例子,希望大家多多提意见嘿嘿谢谢了一起学习!!

PHP上传图片代码:

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

2009-11-16 14:38:36

PHP上传文件代码

2009-11-16 11:18:38

PHP上传图片代码

2009-11-16 13:27:20

PHP上传多张图片

2009-11-30 19:09:46

PHP上传图片

2009-11-16 10:40:02

PHP上传文件代码

2009-11-16 10:49:43

PHP上传文件代码

2009-11-24 14:45:08

PHP批量上传图片

2022-01-18 08:12:02

Markdown编辑器拍云

2011-04-19 10:32:28

图片数据库

2009-11-17 17:17:50

PHP上传多个文件

2010-06-03 11:12:55

Hadoop

2009-11-16 10:57:51

PHP上传文件代码

2009-12-07 15:41:51

PHP图片加水印

2009-11-24 16:09:44

PHP Ajax

2010-08-26 16:40:35

DIV定位

2010-08-31 11:25:15

2010-06-29 13:22:26

UML类图

2011-09-07 10:34:48

Android Wid

2010-07-06 11:07:11

UML组件图

2011-07-26 15:29:36

Cocoa 模式
点赞
收藏

51CTO技术栈公众号