gpt4 book ai didi

php - 如何在通知图标的 html/php 标题栏中将数据显示为来自数据库的通知

转载 作者:行者123 更新时间:2023-11-29 18:15:10 26 4
gpt4 key购买 nike

我在 MySQL 数据库中有一个表名称 order_detail,我从 Android 应用程序中获取其中的值,因此我想在我的管理面板中将 order_id 显示为通知,该面板以 HTML/PHP 编码

表名:order_detail其属性如下

item_id | order_id | 商品名称 | 价格 | 数量

我的管理面板中有通知图标,每当有人从 Android 应用程序发出订单时,我想在其中显示 order_id,并且该订单存储在上述表格中,我会收到通知

通知图标的代码是:

 <a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="label label-pill label-danger count" style="border-radius:10px;"></span> <span class="glyphicon glyphicon-envelope" style="font-size:18px;"></span></a>

最佳答案

有很多方法可以做到这一点。我将演示两种方法,一种适合初学者,另一种则更高级。

1- 创建一个从数据库获取用户通知的 PHP 函数,并使用 ajaxsetInterval() js 函数自动调用它每隔一定时间(例如:10秒)调用服务器端函数示例代码:

Javascript

function getUserNotifications() {
//Call server here and get notifications
//Then modify notifications list in HTML.
}

//Then use the setInterval function on document ready
setInterval(getUserNotifications, 10000); //10000 = 10 seconds

2- 了解 WebPush 以及众多可以获取从服务器发送到客户端的实时通知的软件包。PHP 示例包:Github: Web push phpStackoverflow: How to use web push php library最后是 Github web push example project

享受学习的乐趣。

关于php - 如何在通知图标的 html/php 标题栏中将数据显示为来自数据库的通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47087623/

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