我正在使用 while 在 PHP 代码中结合 HTML 代码进行 CRUD 操作。我希望 HTML 代码在每次执行 while() 后重复。但它给出了错误:“解析错误:语法错误,第 21 行 C:\xampp\htdocs\php\index1.php 中出现意外的 '?> '”。任何人都可以解决这个问题。我已经提到了下面的代码: <?php$con=mysqli_connect("localhost","root","","student");$sql="select * from student_php";$res=mysqli_query($con,$sql);?><table> <tr> <td>S.No</td> <td>Name</td> <td>City</td> </tr><?php while($row =mysqli_fetch_assoc($res){ ?> <tr> <td>S.No</td> <td><?php echo $row['name']?></td> <td><?php echo $row['city']?></td> </tr> <?php } ?></table>
1 回答
千巷猫影
TA贡献1829条经验 获得超7个赞
你的 while 循环没有关闭。
while($row =mysqli_fetch_assoc($res)
需要是
while($row =mysqli_fetch_assoc($res))
- 1 回答
- 0 关注
- 56 浏览
添加回答
举报
0/150
提交
取消