PHP从数据库自动生成一条记录
我有一个网页,我想在其中以不同的时间间隔从数据库中一一生成记录。 例如我有一个表,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您通常不会为此使用 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.