douxian4323 2015-05-05 16:33
浏览 77
已采纳

PHP使用while和嵌套for循环错误地循环输出

Attempting to generate table columns and rows based on input. With smaller numbers it appears to work appropriately, for example inputting 2 rows and 3 cols. But when inputting slightly larger numbers like 5 for rows will output an incorrect amount of rows sometimes looping indefinitely.

if(isset($_POST['submit'])) {

    $rows = (int)$_POST['row_num'];
    $cols = (int)$_POST['col_num'];
    $n = 1;
    $e = 0;

    echo '<table id="">';

    while(($e < $rows) && ($e < $cols)) {

        for($i = 0; $i < $rows; $i++) {
            echo '<tr>';

            for($i = 0; $i < $cols; $i++) {
                echo '<td><input type="text" name="field_' . $n . '"></td>';
                $n++;
            }

            echo '</tr>';
        }

        $e++;
    }

    echo '</table>';
}
  • 写回答

2条回答 默认 最新

  • doumingchen3628 2015-05-05 16:38
    关注

    Firstly, you don't need the While loop, it's pointless and probably causing issues.

    Secondly, you're using $i for both your rows and your columns, you can't use the same variable for both. Use $i for one and $j for the other. This should work:

    if(isset($_POST['submit'])) {
    
        $rows = (int)$_POST['row_num'];
        $cols = (int)$_POST['col_num'];
        $n = 1;
    
        echo '<table id="">';
    
        for($i = 0; $i < $rows; $i++) {
            echo '<tr>';
    
            for($j = 0; $j < $cols; $j++) {
                echo '<td><input type="text" name="field_' . $n++ . '"></td>';
            }
    
            echo '</tr>';
        }
    
        echo '</table>';
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 chaquopy python 安卓
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 有没有帮写代码做实验仿真的
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥30 vmware exsi重置后登不上
  • ¥15 易盾点选的cb参数怎么解啊
  • ¥15 MATLAB运行显示错误,如何解决?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题