gpt4 book ai didi

PHP MySql INNER JOIN 用户 ID 错误

转载 作者:行者123 更新时间:2023-11-29 21:26:49 24 4
gpt4 key购买 nike

我试图抓取一条消息,然后将其显示在我的通知选项卡下,但它没有显示我试图从两个表成员表和通知表中执行 INNER JOIN 的消息,这就是我的表的方式结构已设置。

成员表

成员(member)ID,

用户名,

所有者IP,

还有更多

现在在通知表中,这就是我所拥有的。

通知

ID

成员(member)ID

消息

状态

这是我的 PHP 代码。

                            <li class="dropdown hidden-xs">
<a href="#" data-target="#" class="dropdown-toggle waves-effect waves-light" data-toggle="dropdown" aria-expanded="true">
<i class="icon-bell"></i> <span class="badge badge-xs badge-danger">3</span>
</a>
<ul class="dropdown-menu dropdown-menu-lg">
<?php

// Load Notfications
$loadNotfications = $db->fetchAll("SELECT * FROM notfications INNER JOIN members.memberID ON notfications.memberID = members.memberID WHERE memberID = '".$memberID."'");

if($loadNotfications) {
foreach($loadNotfications as $loadNotfication) {
$id = $loadNotfication['id'];
$memberID = $loadNotfication['memberID'];
$message = $loadNotfication['message'];
$status = $loadNotfication['status'];

?>
<li class="notifi-title"><span class="label label-default pull-right">New 3</span>Notification</li>
<li class="list-group nicescroll notification-list">

<!-- list item-->
<a href="javascript:void(0);" class="list-group-item">
<div class="media">
<div class="pull-left p-r-10">
<em class="fa fa-cog fa-2x text-custom"></em>
</div>
<div class="media-body">
<h5 class="media-heading">New settings</h5>
<p class="m-0">
<small><?php echo $message; ?></small>
</p>
</div>
</div>
</a>
</li>
<li>
<a href="javascript:void(0);" class="list-group-item text-right">
<small class="font-600">See all notifications</small>
</a>
</li>
<?php
}
}
?>
</ul>
</li>

我需要这方面的帮助,任何人都可以帮助我。

最佳答案

我想你可以检查这一行:

$loadNotfications = $db->fetchAll("SELECT * FROM notfications INNER JOIN members.memberID ON notfications.memberID = members.memberID WHERE members.memberID = '".$memberID."'");

我已将 members.memberId 放在 WHERE 子句之后。我认为它可以工作。

关于PHP MySql INNER JOIN 用户 ID 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35468764/

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