PHP从数据库自动生成一条记录

发布于 2024-12-29 08:18:34 字数 196 浏览 0 评论 0原文

我有一个网页,我想在其中以不同的时间间隔从数据库中一一生成记录。 例如我有一个表,

Comment


comment_id: 1 2 3 comment_message:页面上的“Hello”、“Hi”、“Bye”


,第一条评论是“Hello”,10秒后自动发布“Hi”,5秒后自动发布“Bye”。

I have a web base page where I want to generate records from my database one by one and at different time intervals.
For example I have a table,

Comment


coment_id: 1 2 3
comment_message: "Hello", "Hi", "Bye"


on the page, the first comment is Hello is posted then after 10 secs Hi is automatically posted then after 5 secs Bye is automatically posted.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高跟鞋的旋律 2025-01-05 08:18:34

您通常不会为此使用 PHP(实际上也不能)。了解 JavaScript 和 AJAX。简而言之,你制作一个 PHP 脚本来吐出一条评论,然后使用 AJAX 每 10 秒调用一次,它就会每 10 秒吐出一条评论。

You generally don't use PHP for that (nor you can really). Read about JavaScript and AJAX. In a nutshell, you make a PHP script to spit out a single comment, and then call it every 10 seconds using AJAX, it will spit out a comment every 10 seconds.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文