我收到以下错误:
解析错误:语法错误,第 48 行 /home/a4999406/public_html/willingLog.html 中的意外 T_VARIABLE
在以下代码上(第 48 行是此代码的第一行):
$rows = mysql_num_rows($result);
for ($j=0; $j<$rows: ++$j)
{
echo 'ID: ' . mysql_result($result, $j, 'id') . '<br />';
echo 'First: ' . mysql_result($result, $j, 'first') . '<br />';
echo 'Last: ' . mysql_result($result, $j, 'last') . '<br />';
echo 'Email: ' . mysql_result($result, $j, 'email') . '<br />';
}
有人知道我在做什么错吗?