在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; ?>

相关推荐

如何允许像PHP、SQL、HTML这样的代码到WPBakery VisualComposer?

我想允许textarea中的代码使用PHP、SQL或HTML编写代码。。。我想做的是在Visual Composer中创建一个元素,在这里我可以放置一些代码,在我写文章时显示它。您可以在此处找到类型值:https://kb.wpbakery.com/docs/inner-api/vc_map/但这些都不适合我。有正确的方法吗?array( \"type\" => \"textarea_html\", \"heading\" => esc_html__(\"Text\",