当前位置:首页 > PHP教程 > php上传下载 > 列表

php上传图片获取路径及给表单字段赋值的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-07 10:14:00 浏览: 评论:0 

这篇文章主要介绍了php上传图片获取路径及给表单字段赋值的方法,涉及PHP文件传输与表单操作相关技巧,需要的朋友可以参考下。

本文实例讲述了php上传图片获取路径及给表单字段赋值的方法,分享给大家供大家参考,具体如下:

1. 调用方法例子:

大图路径:

<input type="text" name="bigImageURL" id="bigImageURL" value="">

<iframe src="uppic.php?id=bigImageURL" width="600" height="25" frameborder="0" scrolling="no"></iframe>

小图路径:

<input type="text" name="smallImageURL" id="smallImageURL" value="">

<iframe src="uppic.php?id=smallImageURL" width="600" height="25" frameborder="0" scrolling="no"></iframe>

2. uppic.php

  1. <?php 
  2. header("Content-Type:text/html;charset=GB2312"); 
  3. ?> 
  4. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
  5. "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"
  6. <HTML xmlns="http://www.w3.org/1999/xhtml"
  7. <HEAD> 
  8. <TITLE>图片上传</TITLE> 
  9. <META http-equiv=Content-Type content="text/html; charset=gb2312"
  10. <META content="MSHTML 6.00.3790.4275" name=GENERATOR> 
  11. <style type="text/css"
  12. <!-- 
  13. input{border-width:1px;border:1px solid #bdbcbd;padding:3px 0 3px 5px;} 
  14. .inputbut{padding-left:3px;padding-right:2px;border:1px solid #bdbcbd;background:#FFF url(../images/inputbut_bg.gif) left center repeat-x;font-size:12px;height:24px;} 
  15. --> 
  16. </style> 
  17. </HEAD> 
  18. <BODY leftmargin=0 topmargin=0 style="font-size:12px"
  19. <?php 
  20. $id=$_GET["id"]; 
  21. //echo "id==".$id; 
  22. switch($_GET["action"]) 
  23. case "up"
  24.  upmovie($id); 
  25.  break
  26. default
  27.  upinput($id); 
  28.  break
  29. function upinput($id){ 
  30. ?> 
  31. <SCRIPT language=javascript> 
  32. function check()  
  33.  var strFileName=document.form.strPhoto.value; 
  34.  if (strFileName==""
  35.  { 
  36.   alert("请选择要上传的文件"); 
  37.  document.form.strPhoto.focus(); 
  38.   return false; 
  39.  } 
  40.  return true; 
  41. </SCRIPT> 
  42. <form action="uppic.php?action=up&id=<?=$id?>" enctype="multipart/form-data" name="form" method="post" onsubmit="if (!check()) return false;"
  43. <input name="strPhoto" type="file" id="strPhoto" size="40"
  44. <input type="submit" name="Submit" value="上 传" class=inputbut /> 
  45. </form> 
  46. </BODY> 
  47. <?php 
  48. function upmovie($id){ 
  49.  global $web_picdir
  50.  $savePath=dirname(__FILE__)."/".$web_picdir
  51.  $str = date('YmdHis'); 
  52.  if($_FILES['strPhoto']['name']!=''
  53.  { 
  54.  $tmp_file=$_FILES['strPhoto']['tmp_name']; 
  55.  $file_types=explode(".",$_FILES['strPhoto']['name']); 
  56.  $file_type=$file_types[count($file_types)-1]; 
  57.  if(strtolower($file_type)!="jpg"&strtolower($file_type)!="gif"&strtolower($file_type)!="bmp"&strtolower($file_type)!="png"){ 
  58.   echo "<span style=/"color:red;line-height: 25px;/">格式错误请重新上传<a href=# onclick=history.go(-1);>[返回]</a></span>"
  59.   exit
  60.  } 
  61.  $file_name=$str.".".$file_type
  62.  if(!copy($tmp_file,$savePath.$file_name)){ 
  63.  echo "<span style=/"color:red;line-height: 25px;/">上传错误请重试!!<a href=# onclick=history.go(-1);>[返回]</a></span>"
  64.  }else
  65.  //echo "<span style=/"olor:red;line-height: 25px;/">上传成功</span><script>parent.document.getElementById(/"bigImageURL/").value=/"".$file_name."/"</script>"; 
  66.  echo "<span style=/"olor:red;line-height: 25px;/">上传成功</span><script>parent.document.getElementById(/"{$id}/").value=/"".$file_name."/"</script>"
  67.  echo "<a href=# onclick=history.go(-1);>,若需要修改,请重新上传</a>"
  68.  } 
  69.  }else
  70.  echo "<span style=/"color:red;line-height: 25px;/">请选择需要上传的文件<a href=# onclick=history.go(-1);>[返回]</a></span>"
  71.  } 
  72. ?> 

注意: 不同的文本框 需要定义id,  iframe url :   uppic.php?id=文本框id。

Tags: php上传图片 php字段赋值

分享到: