Already searched all topics regarding this question but none of the answers helped me so I'm posting a new question.
I have my page index.php which has php include that all navigation links open in the same index.php. For example when I click about us it opens index.php?page=aboutus.
My problem is I have a div on my homepage:
<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>
For this div, I want him to be hidden in index.php but I want it to be visible on all other pages like index.php?page=aboutus, index.php?page=contact etc.
Is there any simple way to do this with php? :)
Thx in advance.