为了账号安全,请及时绑定邮箱和手机立即绑定

为什么在 while 循环中结合 php 的 HTML 代码冷不执行?

为什么在 while 循环中结合 php 的 HTML 代码冷不执行?

PHP
POPMUISE 2023-09-08 22:09:17
我正在使用 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))


查看完整回答
反对 回复 2023-09-08
  • 1 回答
  • 0 关注
  • 56 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信