gpt4 book ai didi

php - 如何显示表格中的所有数据?

转载 作者:行者123 更新时间:2023-12-04 18:20:47 26 4
gpt4 key购买 nike

关闭。这个问题需要details or clarity .它目前不接受答案。












想改进这个问题?通过 editing this post 添加详细信息并澄清问题.


8年前关闭。







Improve this question




如何使用循环显示表格标签内的表格中的所有数据?
这是我的代码:

     <table width="380px">
<tr>
<td><?php echo $left_bread['recipe'];?></td>
<td><?php echo $left_bread['name'];?></td>
<td><?php echo $left_bread['scale_date'];?></td>
</tr>
</table>

最佳答案

我认为您的代码缺少..据我所知,它缺少 foreach()。也许你应该试试这个,

<?php foreach($your_variable as $your_alias):?>
<table width="380px">
<tr>
<td><?php echo $your_alias['recipe'];?></td>
<td><?php echo $your_alias['name'];?></td>
<td><?php echo $your_alias['scale_date'];?></td>
</tr>
</table>
<?php endforeach;?>

我想就是这样,如果你想要的是从查询中动态显示数据,那么这会做,知道 $your_variable 包含一个将获取配方、名称和 scale_date 的查询。 :)

关于php - 如何显示表格中的所有数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10733746/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com