PHP在HTML中轻松进行循环(Codeigniter)

我希望有人可以帮助我.我正在使用codeigniter作为我的框架.在我的一种观点中,我想输出的选项卡与数据库中“ bestoutof”列中的数字一样多.我试过的代码是:

<?php for ($x = 1; $x = $post->bestoutof; $x++) {
echo '<div class="tab-pane fade active in" id="game<?php $post->bestoutof; ?>"></div>'; } ?>

但这似乎不起作用.非常感谢您对此提供的任何帮助.

谢谢!

解决方法:

对于for循环中的ID,您需要使用$x,例如以下示例:

修改后的代码:

<?php
for ($x = 1; $x = $post['bestoutof']; $x++) { 
    ?>
    <div class="tab-pane fade active in" id="game<?php echo $x;?>"></div>
    <?php
}
?>

Note: If $post['bestoutof'] have multiple values, then $x = $post['bestoutof'] value should be added less-than mark $x <= $post['bestoutof']. This will depend with what the value you have on it

您在每次迭代中都使用$post-> bestoutof的代码出了什么问题.这将返回您未更改的相同游戏ID.

并且不要在php标签内使用php标签.

上一篇:php-Facebook SDK注销无法正常工作


下一篇:教你在Java接口中定义方法