Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在一个页面上,我有一个社区列表...在单击社区时,我将变量发送到下一页。我可以使用 Get 语句显示有关该项目的各种详细信息。
IE:
communityname =$_GET['communityname']在我的 sql 语句中。遇到的问题是在同一页面上的 iframe 上显示与该评论相关的评论。我尝试 GET (communityname =$_GET['communityname']在记录集中使用相同的 sql,但似乎没有得到任何传递的变量。
communityname =$_GET['communityname']
GET (communityname =$_GET['communityname']
您还需要将该变量传递给 iframe src ...
所以 iframe 的 src 应该是
<iframe src="localhost/Yheeps/Community/updates.php?communityname=<?php print $_REQUEST['communityname']; ?>"></iframe>
编辑:我已更改 src 以满足您的需求......我认为这足以让您解决它。但是,如果您显示更多代码,我可能会更精确。