php – 从sql表创建HTML表

前端之家收集整理的这篇文章主要介绍了php – 从sql表创建HTML表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在sql数据库中有一个表,其中包含以下字段:ID,名称,电子邮件,大学,语言和经验.我想创建一个从sql获取数据并输出最后10个结果的html表?我该怎么办?

对不起,如果这是一个非常简单的问题,我对PHPsql知之甚少.

这是我现在的代码,只显示名称而不是表格:

<html>
    <head>
        <title>Last 5 Results</title>
    </head>
    <body>
        <?PHP
            $connect = MysqL_connect("localhost","root","root");
            if (!$connect) {
                die(MysqL_error());
            }
            MysqL_select_db("apploymentdevs");
            $results = MysqL_query("SELECT * FROM demo");
            while($row = MysqL_fetch_array($results)) {

                echo $row['Name'] . "</br>";


            ?>
    </body>
</html>
这些内容可以帮助您创建表格并获得有关 phpmysql的更多知识.

此外,您应该将连接逻辑和查询移动到进程的开头,从而避免在加载页面时出现错误显示MysqL_error更准确的错误.

编辑:如果您的ID正在递增,那么您可以添加ORDER BY子句,
更改:SELECT * FROM demo LIMIT 10
to:SELECT * FROM demo LIMIT 10 ORDER BY id

<html>
    <head>
        <title>Last 10 Results</title>
    </head>
    <body>
        <table>
        <thead>
            <tr>
                <td>Id</td>
                <td>Name</td>
            </tr>
        </thead>
        <tbody>
        <?PHP
            $connect = MysqL_connect("localhost","root");
            if (!$connect) {
                die(MysqL_error());
            }
            MysqL_select_db("apploymentdevs");
            $results = MysqL_query("SELECT * FROM demo LIMIT 10");
            while($row = MysqL_fetch_array($results)) {
            ?>
                <tr>
                    <td><?PHP echo $row['Id']?></td>
                    <td><?PHP echo $row['Name']?></td>
                </tr>

            <?PHP
            }
            ?>
            </tbody>
            </table>
    </body>
</html>

猜你在找的PHP相关文章