我需要知道如何在此链接中的.php部分之后传递所有内容
"http://wreckedclothing.net/help/view.php?e=john@wreckedclothing.net&t=985559"
到同一页面上的iframe。 “托管在同一网站上” 像这样
"<iframe>
src="http://www.wreckedclothing.net/help.php?e=john@wreckedclothing.net&t=985559"
frameborder="0"
width="829"
name="tree"></iframe>
了解它如何将所有内容添加到src中的链接
答案 0 :(得分:2)
$_SERVER['QUERY_STRING']
包含查询字符串(“.php部分之后的所有内容”,“?”除外)。
所以如果你在php页面中,你可以这样做:
<iframe src=[YOUR_URL_HERE]?<?php echo $_SERVER['QUERY_STRING']; ?>></iframe>
将已发送到包含iframe的页面的整个查询字符串传递给iframe的src。