已经搜索了有关此问题的所有主题,但没有一个答案对我有帮助,所以我发布了一个新问题。
我有我的页面 index.php,其中包含 php,所有导航链接都在同一个 index.php 中打开。例如,当我单击关于我们时,它会打开 index.php?page=aboutus。
我的问题是我的主页上有一个 div:
<div class="icons_small">
<a href="#"><img src="images/layout/facebook_icon_s.png" width="75" height="67" /></a>
<a href="#"><img src="images/layout/twitter_icon_s.png" width="75" height="67" /></a>
<a href="#"><img src="images/layout/youtube_icon_s.png" width="75" height="67" /></a>
<a href="#"><img src="images/layout/location_icon_s.png" width="75" height="67" /></a>
</div>
对于这个 div,我希望他隐藏在 index.php 中,但我希望它在所有其他页面上可见,例如 index.php?page=aboutus、index.php?page=contact 等。
有什么简单的方法可以用 php 做到这一点吗?:)
提前谢谢。