用于打印MYSQLi数组的PHP循环无法正常工作

时间:2013-11-08 00:45:30

标签: php mysqli

所以发生的事情是我从我的mysql数据库打印4行到div,然后关闭该div,然后创建一个新的div然后打印4行然后结束该div。依此类推,直到我的数据库中不再有任何内容为止。

完成此操作后,它将打印一个表单,用户可以在其中添加到DB(打印姓氏后的riht)(如果div中已有4个名称,则必须创建另一个名称) DIV) 下面的代码是我现在拥有的,它可以工作,但它有一些问题。 问题是: - 未打印DB的第一个条目,它从第2个条目开始打印。 - 在打印结束时,所有名称都会打印内容div,但其中没有名称。 (其中1个或2个) - 如果div中已有4个名称,表单将不会为表单创建另一个div

通过摆弄$count2变量,我可以让它摆脱那些空的内容div,然而我失去了我的提交按钮的功能(它在那里,但你不能点击它)

有人能发现并纠正问题所在吗?

非常感谢你们!

P.S我尽可能地评论,以便你能理解我认为应该发生的事情。

$countsql = <<<SQL
            SELECT *
            FROM `deathnote`
SQL;

if ($stmt = mysqli_prepare($db, $countsql)) {

    /* execute query */
    mysqli_stmt_execute($stmt);

    /* store result */
    mysqli_stmt_store_result($stmt);

    $countresult = mysqli_stmt_num_rows($stmt);
}
$count2=0; //count how many overall names have been printed
$pagecount=0; //count for how many names are on a page
while($result->fetch_assoc() != NULL){ //While result isn't empty
 echo '<div style="background-image:url(images/paper.jpg);">'; //start new page div
    while ($pagecount < 4) { //loop to put only 4 names on 1 page
    $row = $result->fetch_assoc(); //grab name and cod
                echo '<div class="content"><div class="name">'  . $row['victim'] . '</div><div class="cod">'  . $row['cod'] . '</div></div>'; //display name and cod inside a content div
        $pagecount++; //increase the count of amount of names on page
        $count2++; //increase the overall names printed
        if ($count2 == $countresult) { //if the overall names printed = the total count of whats in the database (meaning there is nothing left to print)
        echo '<div class="content"><form action="write.php" method="post"><div class="name">Name: <br/> Cause Of Death: </div><div class="cod"><textarea type="text" name="name" maxlength="25" placeholder="Input Name" required></textarea> <br /> <textarea type="text" name="cod" maxlength="130" rows="4" placeholder="Cause of Death" required></textarea> <br /><input type="submit" id="button" value="Submit"></div></form></div>'; //print the form for user to add to the database
        }

    }
$pagecount=0; //because there is 4 names printed, we have to set the count back to 0
echo '</div>'; //end the 'page' div (which will end the page)
}

1 个答案:

答案 0 :(得分:0)

如果我理解正确,数据库记录应该以四个记录为一组输出,直到没有更多记录为止。

将数据库内容提取到数组中然后遍历数组可能会更容易。

但是,这是与上面提供的代码类似的方法 该代码进行了评论,试图解释发生了什么。

// initialize record counter
$count=0;

// loop through query result
while($row->fetch_assoc($stmt)){

    // increment record counter
    $count++;

    // if this is the first record in this group, start a new page div
    if ($count==1) {
      ?><div style="background-image:url(images/paper.jpg);"><?php
    }

    //display name and cod inside a content div
    ?><div class="content">
      <div class="name"><?=$row['victim']?></div>
      <div class="cod"><?=$row['cod']?></div>
    </div><?php

    // if this is fourth record in group, close page div and reset counter
    if ($count==4) {
      ?></div><?php
      $count=0;
    }

}

// if the last group had less than four items, close final page div.
if ($count>0) {
  ?></div><?php
}

//print the form for user to add to the database
?><div class="content">
    <form action="write.php" method="post">
        <div class="name">
            Name:<br/>
            Cause Of Death:
        </div>
        <div class="cod">
            <textarea type="text" name="name" maxlength="25" placeholder="Input Name" required></textarea><br />
            <textarea type="text" name="cod" maxlength="130" rows="4" placeholder="Cause of Death" required></textarea><br />
            <input type="submit" id="button" value="Submit">
        </div>
    </form>
</div>

您的问题:

<强> 1。不打印数据库的第一个条目,它从第二个条目开始打印。

  • 这是因为你有两个嵌套的“fetch”循环。你只需要一个。

<强> 2。在打印结束时,所有名称都打印出内容div,但没有名称。

  • 这是因为你的“fetch”循环中有一个“页数”循环  因此,即使在最后一条记录中,它仍然会输出四个内容框。

第3。如果div中已有4个名称,则表单不会为表单创建另一个div。

  • 这是因为您的表单输出取决于包含四个项目的最后一个组。