MYSQL查询只获得最后的结果?

时间:2015-02-02 16:42:26

标签: php mysql

我尝试使用PHP / MYSQL创建通知系统。

在某种程度上它工作正常,但我不明白为什么它只获得最后的结果(最后一个ID)。

这是我目前的代码:

<?php
include "../config/connect.php";
// This block grabs the whole list for viewing
$query = "SELECT id, extendedd, alarm_signal FROM bookings";

$noti = '';
if ($stmt = mysqli_prepare($db_conx, $query)) {

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

    /* bind result variables */
   mysqli_stmt_bind_result($stmt, $idc, $extendedd, $alarm_signal);

    /* fetch values */
   while (mysqli_stmt_fetch($stmt)) {

       $extendeddd = $extendedd;

       //echo $extendeddd;

       if($extendedd =='yes'){


       $noti = '<div  id="mainNoti" style="position:fixed; right:30px; bottom:0; background-color:#F90; right:40px; width:400px; height:300px; border-radius:4px; border:dashed 2px #666; color:#000; text-align:center; padding-top:15px;"><form action="notification" method="post" id="addit"><input type="hidden" name="mesOff" id="mesOff"  value="1"/>
       <input class="btn2" type="submit" value="The job with id '.$idc.' has been extended!&nbsp;" />
       <br /><br /><br /><br />
       </form></div>';

       } else if ($extendedd == '0'){
         $noti = '';  
       }

   }
}

mysqli_stmt_close($stmt);
echo $noti;

?>

上面的代码工作正常,但它只会获得最后$extendedd的{​​{1}}而且我不明白为什么会发生这种情况!

有人可以就此问题提出建议吗?

1 个答案:

答案 0 :(得分:0)

while(....) {
  $noti = ...
}
echo $noti;

您在每次迭代中都会覆盖$ noti,因此在循环之后只能访问最后一个值。
在while循环中打印$ noti的值。
或者通过字符串连接将新字符串附加到$ noti的当前值:http://docs.php.net/manual/en/language.operators.string.php