在Fetch Assoc函数中使用While循环时如何结束 时间:2019-10-09 作者:ArtisanGee <?php while($row = $result->fetch_assoc()); ?> <tr> <td><?php echo $row[\'name\']; ?></td> <td><?php echo $row[\'location\']; ?></td> <td></td> </tr> <?php endwhile; ?> 语法错误,意外的“endwhile”(T\\u endwhile),应为强调文本的文件结尾 1 个回复 SO网友:Chetan Vaghela 在里面while($row = $result->fetch_assoc()); 分号导致问题。代替; 具有:<?php while($row = $result->fetch_assoc()): ?> <tr> <td><?php echo $row[\'name\']; ?></td> <td><?php echo $row[\'location\']; ?></td> <td></td> </tr> <?php endwhile; ?> 文章导航