我面临一个非常简单的任务,但由于某种原因,我无法解决这个问题,可能是因为我的 PHP 不好。
我有一个表,它有 1 个标题,跨越 4 列。在第一列中,它将是静态数据(可以说是标题,但仅在第一列中)。我需要的是根据返回的结果填充第二列等等。我正在构建一个表,当比较产品时,它将填充一个包含与产品相关的信息的列
<table id="price-compare" class="device-compare" border="1">
<caption>Price</caption>
<?php
$rows = 3;
$cols = 4;
for($tr=1;$tr<=$rows;$tr++){
echo "<tr>";
for($td=1;$td<=$cols;$td++){
echo "<td>row: ".$tr." column: ".$td."</td>";
}
echo "</tr>";
}
?>
<tr>
<td class="left-header"><?php echo $phones->field('name'); ?></td>
<td><sup>$</sup><?php echo $phones_retail; ?></td>
</tr>
<tr>
<td class="left-header">Fuel Price</td>
<td><sup>$</sup><?php echo $phones_retail; ?></td>
</tr>
<tr>
<td class="left-header">2-yr Contract Price</td>
<td style="font-weight: bold; color:#1b75bb;"><sup>$</sup><?php echo $phones_contract; ?></td>
</tr>
</table>
如您所见,我需要第一列保持不变,并将与产品相关的数据添加到后续列中。