gpt4 book ai didi

PHP通知

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:39:31 24 4
gpt4 key购买 nike

好吧,也许我只是在这里空白,但我正在制作一个通知系统并且我正在使用 PHP 作为我的后端。我正在使用以下代码设置正确的通知数量

$updates = mysql_query("SELECT * FROM updates WHERE userid = '$uid'");
while($row = mysql_fetch_array( $query )) {
if ($updates>0) {
for ($i=0; $i<$updates;$i++) {
echo '
<li class="update">'.$updates.'</li>
';
}
} else {
echo'<h4 class="nonew">No New Notifications</h4>';
}
}

此代码将回显正确数量的通知,但会回显它应该回显单个评论内容的整个位置。如何仅回显该单个通知的内容?我相信这有一个简单的答案,我已经知道了,但我现在想不起来。谢谢!


编辑:

这是我的数据库结构:

Updates
-id
-userid
-active
-date
-content

最佳答案

// In case $uid comes from user input
$uid = mysql_real_escape_string($uid);

// Fetch the user's notifications
$updates = mysql_query("SELECT content FROM updates WHERE userid = '" . $uid . "'");

if (mysql_num_rows($updates))
{
// Output the user's notifications
while ($get = mysql_fetch_array($updates))
{
echo '<li class="update">' . $get['content'] . '</li>' . "\n";
}
}
else
{
echo '<h4 class="nonew">No New Notifications</h4>' . "\n";
}

关于PHP通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9508967/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com