Hi i am trying to set two users access to display a div tag using there id is this possible??
this is what i have at the moment:
<?php
if($_SESSION['user_id'] == "35") {
?>
<div id="navMenu"> <img src="../images/intranetMenu/arrow.gif" alt="Arrow" width="7" height="8" /> <strong>Intranet Admin </strong> </div>
<?php
}
?>
and i need to add an other user_id.
please help.