Topic: Miniportal Site Error

Here is the error Message:

Parse error: parse error, unexpected ';' in C:\Dokumente und Einstellungen\buero-pc\Desktop\entwicklung\xampp\phpMyAdmin\punbb\forum.php on line 106

96 <div id="idx<?php echo $cat_count ?>" class="blocktable">
97  <h3>
98     <span class="conr"><a href="javascript:togglecategory(<?php echo $cat_count?>);"><img   
          src="<?php echo $exp_img?>" alt="Collapse" id="img_<?php echo $cat_count?>" /></a></span>
99        <span><?php echo pun_htmlspecialchars($cur_forum['cat_name']) ?></span>
100  </h3>
101   <div class="box" id="box_<?php echo $cat_count ?>"<?php echo $div_box?>>
102
103        <div class="inbox">
104            <table cellspacing="0">
105            <thead>
106                <tr>
107                    <th class="tcl" scope="col"><?php echo // $lang_common['Forum'] ?></th>
108                    <th class="tc2" scope="col"><?php echo // $lang_index['Topics'] ?></th>
109                    <th class="tc3" scope="col"><?php echo // $lang_common['Posts'] ?></th>
110                    <th class="tcr" scope="col"><?php echo // $lang_common['Last post'] ?></th>
111                </tr>
112            </thead>
113            <tbody>

What could be wrong with the code, strange think is that on the production site it works and at the development machine this error message occurs.

The poor horseman without horses
www.galopp-sport.eu

http://claimid.com/jlangrock
[img]http://claimid.com/images/hcard.gif[/img]

Re: Miniportal Site Error

Perhaps it's because you're echoing but there's nothing there? tongue

Re: Miniportal Site Error

Reason why I don't delete the lines, is to have the opportunity to use it again. Could that lines occurs runtime problems ?

The poor horseman without horses
www.galopp-sport.eu

http://claimid.com/jlangrock
[img]http://claimid.com/images/hcard.gif[/img]

Re: Miniportal Site Error

You can't just comment out the stuff to be echoed, that's what's giving you the error. Comment out the whole echo statement smile