I did as you suggested and it kinda works.
Here's where it gets really weird....
<?php if ($_SESSION['sessLevel'] < 8){ ?>
<tr><td>
Access Level is Not High Enough
</td></tr>
<?php } ?>
When I view the Include file on it's own, the above works correctly and shows the information if the access level is less than 8.
But, when the file is included into another one, the exact reverse happens! When it should hide the info, it shows it, when it should show the info, it hides it!!! What the heck is that all about??
Any ideas?
Thanks again.