This is throwing that parse error. Is there a misuse or ' or "?
PHP Code:
<?php
for ($cnt=0;$cnt<=$count-1;$cnt++){
$row_color = ($cnt % 2) ? 'class="white"' : 'class="grey"';
$id = $cnt + 1;
$display_date = date("F j, Y",$farray[mod][$cnt]);
echo<<<EOB;
<tr>
<td $row_color><strong>$id</strong></td>
<td $row_color> $farray['descr'][$cnt]</td>
<td $row_color align="center">$farray['counter'][$cnt]</td>
<td $row_color>$display_date</td>
</tr>
EOB
;
?>
Comment