上传显示页面<table> 
<tr> 
<td><input name="News_SmallPic" type="text" id="News_SmallPic" ></td>
<td><iframe frameborder="0" src="sysupfile/system_upfile.php?inputid=News_SmallPic&FileName=" height="25" id="iframe_SmallPic"></iframe></td>
</tr>
</table><br>
 <table width="100%" border="0" cellspacing="0" cellpadding="0">
   <tr><td id="picid"></td> </tr>
</table>上传图片指定保存页面copy($_FILES['photo']['tmp_name'], $target_path); 
$PicID = "picid";
$StrPic = "<img src='".Site_Url."/upfile/".$filename."'>";
echo $StrPic;
echo "<script>parent.document.getElementById('" . $PicID . "').innerHTML = '" . $StrPic . "';</script>";
echo "<script>parent.document.getElementById('" . $inputid ."').value = '" .$filename . "';</script>";  其中echo "<script>parent.document.getElementById('" . $inputid ."').value = '" .$filename . "';</script>"; 这一句是有用的,相应的值会写到前面的INPUT里,
但是echo "<script>parent.document.getElementById('" . $PicID . "').innerHTML = '" . $StrPic . "';</script>";
没有效果,前面的页面不能显示上传图片出来???