Heim  >  Artikel  >  Backend-Entwicklung  >  php上传图片获取路径及给表单字段赋值的方法

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

WBOY
WBOYOriginal
2016-07-29 09:05:121149Durchsuche

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

1. 调用方法例子:

大图路径:

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

小图路径:

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

2. uppic.php




<title>图片上传</title>
<meta http-equiv="Content-Type" c name="GENERATOR">
<style type="text/css">
<!--
input{border-width:1px;border:1px solid #bdbcbd;padding:3px 0 3px 5px;}
.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;}
-->
</style>



<script language="javascript">
function check() 
{
 var strFileName=document.form.strPhoto.value;
 if (strFileName=="")
 {
   alert("请选择要上传的文件");
 document.form.strPhoto.focus();
   return false;
  }
 return true;
}
</script>
格式错误请重新上传"; exit; } $file_name=$str.".".$file_type; if(!copy($tmp_file,$savePath.$file_name)){ echo "上传错误请重试!!"; }else{ //echo "上传成功<script>parent.document.getElementById(/"bigImageURL/").value=/"".$file_name."/"</script>"; echo "上传成功<script>parent.document.getElementById(/"{$id}/").value=/"".$file_name."/"</script>"; echo ""; } }else{ echo "请选择需要上传的文件"; } } ?>

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

更多关于PHP图片操作相关内容感兴趣的读者可查看本站专题:《PHP图形与图片操作技巧汇总》

希望本文所述对大家PHP程序设计有所帮助。

以上就介绍了php上传图片获取路径及给表单字段赋值的方法,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php类的继承性及其相关Nächster Artikel:PHP编码规范/PSR-3