我正在尝试为我的社区网站创建通知系统,我尝试使用while
循环来获取数据,当在while循环中满足if语句中的条件时,它应该显示/将数据打印到页面。出于某种原因,它只显示一个结果,不知道为什么。
我的数据库结构:
CREATE TABLE IF NOT EXISTS `notifications` (
`notification_id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`to_id` int(11) NOT NULL,
`notification_identifier` enum('1','2','3','4','5','6') NOT NULL,
`notify_id` int(11) NOT NULL,
`opened` enum('0','1') NOT NULL,
`timestamp` datetime NOT NULL,
PRIMARY KEY (`notification_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
notification_identifier告诉我它是什么类型的通知(例如个人资料评论,状态更新,喜欢),notify_id
告诉我需要查看的每个特定表的ID。
我的代码:
<?
$DisplayNotification ="";
$unread = "0";
$mynotify = mysql_query("SELECT * FROM notifications WHERE to_id='$logOptions_id' AND opened='$unread'") or die (mysql_error());
$notify_Count = mysql_num_rows($mynotify);
if($notify_Count>0){
while($row = mysql_fetch_array($mynotify)){
$notification_id = $row["notification_id"];
$memb_id = $row["user_id"];
$identifier = $row["notification_identifier"];
$notify_id =$row["notify_id"];
$timestamp = $row["timestamp"];
$convertedTime = ($myObject -> convert_datetime($timestamp));
$when_notify = ($myObject -> makeAgo($convertedTime));
if($identifier == 1){// condition 1
$DisplayNotification ='user added you as a friend';
}else if ($identifier == 2) {//condition 2
$DisplayNotification ='user commented on your post';
}
}
}else{// End of $notify
$DisplayNotification ='You have no new notifications.';
}
?>
任何帮助表示赞赏
答案 0 :(得分:3)
$DisplayNotification
实际显示在哪里?它肯定不在你的循环体内。
每次循环都会为$DisplayNotification
分配一个新值,这当然会替换旧值。当你完成任务时,无论发生了什么,最近的变化是唯一剩下的。
我很可能怀疑你打算做一些像
这样的事情$DisplayNotification .= "User added you as a friend\n";
.=
将继续在整个循环中向同一变量添加新文本。
或许您可以使用数组,在这种情况下,您可以使用
$DisplayNotifications[] = "User added you as a friend";
然后你可以显示你喜欢的所有项目。
答案 1 :(得分:0)
在实际转储变量$DisplayNotification
之前,您似乎完全运行 while 语句。如果是这种情况,那么您只需在循环期间切换变量的值。您需要存储要转储到Array中的值,或者只是将它们转储到循环中。