Hi All,
Could you help/guide me accordingly please...My intentions with this piece of code is for the relevant image to display with the respective user...my problem is that it doesn't work for the second user type (SysAdmin), it only works for 'Admin'...
<tr>
<td width="255">
<?
if($arr[6] != 'Admin' || $arr[6] != 'SysAdmin')
{
?>
<div align="center"><img src="images/bill.png" alt="Bill" /></div>
<?
}
else
{
?>
<div align="center"><a href="underConstruction.php"><img src="images/bill.png" alt="Bill" /></a></div>
<?
}
?>
</td>
</tr>
May