PHP Parse Error Help Needed
        Posted  
        
            by adcmarti
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by adcmarti
        
        
        
        Published on 2010-04-13T13:12:26Z
        Indexed on 
            2010/04/13
            13:22 UTC
        
        
        Read the original article
        Hit count: 416
        
I am receiving this PHP parse error on the last line of this php file. What am I missing? Here is the last 15 lines or so.
     <div id="footer">
        <br />
        <p><b>Member Total:</b><?php echo $database->getNumMembers(); ?>
            <br>There are <?php echo $database->num_active_users; ?> registered members and    <?php $database->num_active_guests; ?> guests viewing the site.<br><br>
            <?php
            include("include/view_active.php");
            ?>
        </p>
     </div><!-- #footer -->
<? } ?>
</div><!-- #main -->
<?php include("_footer.html"); ?>
Any help would be appreciated. Thank you!
© Stack Overflow or respective owner