1

转到此问题的底部以获取答案

我目前正在制作一个表格输出,它基本上会逐行列出用户。表输出上的列将由一个特定的 SQL 列填充,但来自多行(比如 John Smith 有 4 行,但 X 列在此表的每一行上都有不同的值)。

为了给您更多上下文,这是当前表格状态的文本表示。

Name  |  Col1  |  Col2  |  Col3
---------------------------------
Name1 |   0    |   X    |   1

Name2 |   3    |   2    |   <--- Value missing

Name3 |   2    |   1    |   <--- Value missing (and this continues through the table..

正如您在该表上看到的那样,第一行填充得很好 - 但之后的其余行似乎忽略了数据的迭代(因此为什么其余行只填充 2 列。

循环的相关代码如下:

while ($row = mysql_fetch_assoc($result)) {

    echo "<tr><td>". $row['forename'] . "</td>
      <td>". $row['status'] ."</td>";

             while ($col = mysql_fetch_assoc($result)) {

                 if ($col['id'] == $row['id']) {

                     echo "<td>" . $col['status'] . "</td>";

                 }

                 else if ($col['id'] != $row['id']){
                     echo "</tr>";
                     break;
                 }
             }
}

有没有人知道为什么会发生这种情况?我希望我已经提供了足够的信息,但如果没有,请告诉我!:)

4

3 回答 3

0
if ($col['id'] == $row['id'])
{
     make a td
}

我认为问题在于有时 $col['id'] != $row['id']

于 2012-05-31T13:46:14.447 回答
0

通过查看您的代码,我可以建议进行调整。

通过调用mysql_fetch_assoc($result)内部WHILE循环,您正在移动结果对象中的指针(尽管不是有意的)。

您应该使用$row在第一个循环中检索到的数组。

如果您真的需要像我看到的那样进行比较,最好的办法是遍历整个结果集,首先将单个记录放入一个数组中,然后您可以在循环中使用,如下所示:

$records = array();
//array to hold the retrieved records from the database
while($row = mysql_fetch_assoc($result)){
    //loop through the data
    $records[] = $row;
}
//continue with your processing, this time using $records as your result set
//an looping through it this time as an array -- you don't need mysql_fetch_assoc
.....

祝你好运!

于 2012-05-31T13:55:35.857 回答
0

扩展 Okekes 的想法(干杯伙伴)我修改了另一种方法,现在效果很好!

//declare new array variable
                $resultSet[] = array();

                //set offset integer
                $i = 0;

                //While loop to return all rows from query, and place into multi dimensional array format
                while ($row = mysql_fetch_assoc($result)) {
                    $resultSet[$i] = $row;
                    $i++;
                }

                //check that the array isn't empty
                if ($resultSet) {

                    $innerCount = "0";

                    //count how many rows are in the array
                    $rowCount = count($resultSet);

                    //loop through the array, each row, then go through inner loop for columns
                    for ($row = 0; $row < $rowCount; $row=$row+$numRows) {

                        //declare variables for the row data
                        $foreName = $resultSet[$row]['forename'];
                        $surName = $resultSet[$row]['surname'];

                        echo "<tr><td>" . $foreName . " " . $surName . "</td>";

                        for ($col = $row; $col < $rowCount; $col++) {

                            if ($innerCount < $numRows) {

                            $innerCount++;
                            $currStatus = $resultSet[$col]['status'];
                            echo "<td>" . $currStatus . "</td>";

                            }

                            else {

                                echo "</tr>";
                                $innerCount = "0";
                                break;
                            }

                        }
                    }
                }
于 2012-06-12T21:17:53.620 回答