0
我缺少什麼 得到如何將一個複選框添加到行的結果
Parse error: syntax error, unexpected 'checkbox' (T_STRING), expecting ',' or ';' in C:\xampp\htdocs\index.php on line 70
if(mysql_num_rows($result) !== 0)
{
while($row=mysql_fetch_array($result))
{
echo '<tr>
<td>'.$row['aid'].'</td>
<td>'.$row['Name'].'</td>
<td>'."<input type="checkbox" class='form' value="1" name="checkbox[]" />".'</td>
</tr>';
}
}