需要一个能够传输最新 MySQL 字段条目的脚本

发布于 2024-10-21 07:26:22 字数 94 浏览 5 评论 0原文

我想要一个 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 技术交流群。

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

发布评论

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

评论(2

爱她像谁 2024-10-28 07:26:22

您需要的 SQL 将类似于以下内容

SELECT * FROM table ORDER BY datetimeField DESC LIMIT 10

然后您只需在 PHP 中迭代查询结果即可。

The SQL you'll need will be along the lines of the following

SELECT * FROM table ORDER BY datetimeField DESC LIMIT 10

Then you just iterate over the result of your query in your PHP.

终弃我 2024-10-28 07:26:22
<?php

    // connect to the database at 127.0.0.1 (localhost) 
    // with username mysql_username and password mysql_password
    $link = mysql_connect('127.0.0.1', 'mysql_username', 'mysql_password');

    // fire off query
    $result = mysql_query("SELECT fieldname FROM tablename ORDER BY datefield DESC LIMIT 10", $link);


    // loop through results, displaying field.
    while ($row = mysql_fetch_assoc($result)) {
            echo $row['fieldname'];
    }

    // close the connection to the database
    mysql_close($link);

?> 
<?php

    // connect to the database at 127.0.0.1 (localhost) 
    // with username mysql_username and password mysql_password
    $link = mysql_connect('127.0.0.1', 'mysql_username', 'mysql_password');

    // fire off query
    $result = mysql_query("SELECT fieldname FROM tablename ORDER BY datefield DESC LIMIT 10", $link);


    // loop through results, displaying field.
    while ($row = mysql_fetch_assoc($result)) {
            echo $row['fieldname'];
    }

    // close the connection to the database
    mysql_close($link);

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