我在sql数据库中有一个表,其中包含以下字段:ID,名称,电子邮件,大学,语言和经验.我想创建一个从sql中获取数据并输出最后10个结果的html表?我该怎么办?
对不起,如果这是一个非常简单的问题,我对PHP和sql知之甚少.
<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>
这些内容可以帮助您创建表格并获得有关
php和
mysql的更多知识.
此外,您应该将连接逻辑和查询移动到进程的开头,从而避免在加载页面时出现错误并显示比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>