
Originally Posted by
bdatz
Code:
<!--p echo $active; if ($active){ include('message/dispmarq.php'); }-->
Wow. Okay, it looks like you are expecting the file dispmarq.php to be included at the bottom of the page. If so, you've done your include wrong. Replace this:
Code:
<!--p echo $active; if ($active){ include('message/dispmarq.php'); }-->
with this:
Code:
<?php echo $active; if ($active){ include('message/dispmarq.php'); } ?>
and see how you make out. What you have is a server side include for Apache, not a PHP include.