需要一个能够传输最新 MySQL 字段条目的脚本
我想要一个 PHP 脚本将所有新条目流式传输到 MySQL 字段。假设页面上显示了 10 个最新的内容,按时间顺序排列,因为该字段具有日期时间。如果有人能提供帮助那就太好了。
I want a PHP script to stream all new entries to a MySQL field. So lets say there are 10 of the newest displaying on a page, in time order because the field has a datetime. If anyone can help it would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要的 SQL 将类似于以下内容
然后您只需在 PHP 中迭代查询结果即可。
The SQL you'll need will be along the lines of the following
Then you just iterate over the result of your query in your PHP.