Post-script error?
Posted: Wed Mar 24, 2004 3:38 pm
Lets say this is my code:
And I get this error
Parse error: parse error, unexpected $ in c:\html\nhhp\rev.bdy on line 23
note line 23 is this: </table>
Code: Select all
<table>
<tr>
<td>
<b>Year</b>
</td>
<td>
<b>Quarter</b>
</td>
</tr>
<?
while($choice = mysql_fetch_object($test_result, MYSQL_ASSOC)){
echo "<tr>\n
<td>\n
$choice->Sel_Year\n
</td>\n
<td>\n
$choice->Sel_Quarter\n
</td>\n
</tr>";
?>
</table>Parse error: parse error, unexpected $ in c:\html\nhhp\rev.bdy on line 23
note line 23 is this: </table>