嗨,这是我尝试的代码,第一个 while 语句适用于行(适用于 weights0,但我无法让它与列(高度)一起使用。它的工作原理是,如果 min_height 输入值为 20 且 max_height 为 50,则列将看起来像这样 20 25 30 35 40 45 50。我的代码目前适用于行但不适用于列,有人可以帮忙吗?
<?php
$rowiStep = 5;
$coliStep = 5;
// Get these
$iweightMin = $_GET["min_weight"];
$iweightMax = $_GET["max_weight"];
$iheightMin = $_GET["max_height"];
$iheightmax = $_GET["min_height"];
$iCur = $iweightMin;
$iCol = $iheightMin;
print('<table class="table">');
print('<tr ><td>Height/</br>Weight</td>');
while ($iCur <= $iweightMax) {
printf('<tr><td>%d</td></tr>', $iCur);
$iCur += $rowiStep;
}
$rowiCol = $iheightMin;
while ($iCol <= $iheightmax) {
printf('<tr><td></td>', $iCol);
$iCol += $rowiCol;
}
print ('</tr>');
print('</table>');
?>