PHP我想用php创建一个html表

时间:2013-03-14 21:19:46

标签: php

你好我的尝试代码,第一个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>');  

?>

1 个答案:

答案 0 :(得分:0)

如果您要打印高度/重量矩阵;试试这个:

$rowiStep = 5;
$coliStep = 5;
$output = array(
    '<table>'
);

for( $row_val = $_GET['min_weight'], $row_max <= $_GET['max_weight'];
     $row_val < $row_max;
     $row_val += $rowistep )
{
    $output[] = '<tr><td>' . $row_val . '</td>';
    for( $col_val = $_GET['min_height'], $col_val <= $_GET['max_height'];
         $col_val < $col_max;
         $col_val += $colistep )
    {
        $output[] = '<td>' . $col_val . '</td>';
    }
    $output[] = '</tr>';
}
$output[] = '</table>';
echo implode( "\n", $output );

这将产生如下输出:

|min_weight            |min_height|min_height+colIStep|min_height+2colIstep|...|
|min_weight + rowIstep |min_height|min_height+colIStep|min_height+2colIstep|...|
|min_weight + 2rowIstep|min_height|min_height+colIStep|min_height+2colIstep|...|
|...|

您在寻找什么输出?