gpt4 book ai didi

php - 如何在php中制作表格 View

转载 作者:行者123 更新时间:2023-11-30 22:53:05 25 4
gpt4 key购买 nike

我什至不确定它叫什么,但我想让一个表完全动态。其中顶部名为“tier”,值取自名为“tier”的数据库表。在旁边有来自数据库“items”表的“items”。我还为多对多关系制作了一个中间表一个项目有很多层,一个层有很多项目。在这个中间表中,我存储了项目 ID 和等级 ID。

我已经设法根据数据库动态显示层级和项目,但我现在不确定如何填充该数据。

enter image description here

我想要的是从中间表中获取值并将其插入。该值是一个 bool 值,所以要么是 true 要么是 false。例如我想检查 Silver 层是否有照片,如果它等于 true 我想显示它。我怎么能做这样的事情,因为我无法全神贯注。

这是我为生成表格所做的代码,如果我可以做任何改进,请告诉我如果可能的话我想学习更好的编码。

<table>
<tr>
<td></td>
<?php
$counter = 0;
//To show all of the tiers
foreach ($tier as $tier) {
$counter ++;
?>
<td>
<?php echo $tier->name; ?>
</td>
<?php
foreach ($itemTier as $value) {
if($tier->id == $value->itemId){
echo $value->value;
}
}
?>
<?php
}
?>
</tr>
<?php
//Showing all of the options
foreach ($item as $item) {
?>
<tr>
<td>
<?php echo $item->name; ?>
</td>
<?php
//Displaying the extra columns
for($i = 0; $i< $counter; $i++){
?>
<td>
</td>
<?php
}
?>
</tr>
<?php
}
?>
</table>

最佳答案

<?php
$variable = 'Hello World';
?>
<table>
<tr>
<td>
<? echo $variable; ?>
</td>
</tr>
</table>

关于php - 如何在php中制作表格 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27503748/

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