我在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>
答案 0 :(得分:10)
以下内容可帮助您创建表格并获取有关php和mysql的更多信息。
此外,您应该将连接逻辑和查询移动到流程的开头,从而避免在加载页面时出现错误并显示比mysql_error更准确的错误。
编辑:如果您的ID正在递增,那么您可以添加ORDER BY子句,
更改:SELECT * FROM demo LIMIT 10
致: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", "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>
答案 1 :(得分:6)
一个选项,要求您将数据库中的数据编码为JSON:http://www.jeasyui.com/documentation/datagrid.php
但这看起来更有希望:http://phpgrid.com/
答案 2 :(得分:4)
在查询结果上调用table( $result );
将生成基于html的表,而不管您为其提供的sql数组的大小。我希望这有助于:)
<?php
function table( $result ) {
$result->fetch_array( MYSQLI_ASSOC );
echo '<table>';
tableHead( $result );
tableBody( $result );
echo '</table>';
}
function tableHead( $result ) {
echo '<thead>';
foreach ( $result as $x ) {
echo '<tr>';
foreach ( $x as $k => $y ) {
echo '<th>' . ucfirst( $k ) . '</th>';
}
echo '</tr>';
break;
}
echo '</thead>';
}
function tableBody( $result ) {
echo '<tbody>';
foreach ( $result as $x ) {
echo '<tr>';
foreach ( $x as $y ) {
echo '<td>' . $y . '</td>';
}
echo '</tr>';
}
echo '</tbody>';
}
答案 3 :(得分:3)
我非常恼火地一遍又一遍地粘贴相同的代码以从SQL查询构建HTML表。
所以,在这里,我们使用一个带有mysqli
结果的函数并将它们粘贴到一个简单的HTML表,该表具有根据数据库中的列名称的列名:
function sql_to_html_table($sqlresult, $delim="\n") {
// starting table
$htmltable = "<table>" . $delim ;
$counter = 0 ;
// putting in lines
while( $row = $sqlresult->fetch_assoc() ){
if ( $counter===0 ) {
// table header
$htmltable .= "<tr>" . $delim;
foreach ($row as $key => $value ) {
$htmltable .= "<th>" . $key . "</th>" . $delim ;
}
$htmltable .= "</tr>" . $delim ;
$counter = 22;
}
// table body
$htmltable .= "<tr>" . $delim ;
foreach ($row as $key => $value ) {
$htmltable .= "<td>" . $value . "</td>" . $delim ;
}
$htmltable .= "</tr>" . $delim ;
}
// closing table
$htmltable .= "</table>" . $delim ;
// return
return( $htmltable ) ;
}
使用示例:
$DB = new mysqli("host", "username", "password", "database");
$sqlresult = $DB->query( "SELECT * FROM testtable LIMIT 1 ;" ) ;
echo sql_to_html_table( $sqlresult, $delim="\n" ) ;
答案 4 :(得分:1)
您可能对使用mysql_fetch_assoc()
进行提取感兴趣(这样您就可以获得关联数组中的数据:keys =&gt; value)。在键中是你的列名;因此,对于每一行,您可以遍历每一列(使用array_keys()
)并打印其值。
$results = mysql_query("SELECT * FROM demo");
while($row = mysql_fetch_assoc($results)) {
foreach (array_keys($row) as $column) {
echo $row[$key] . "</br>";
}
}
(之后,您可以将array_keys($ row)缓存到仅设置一次的变量中,因为在运行结果时它的值不会改变。)
答案 5 :(得分:1)
即使已经有一段时间了,我还要花2美分:使用函数(甚至更好 - 类)。从mysql结果创建表是一项非常常见的任务。
<!DOCTYPE html>
<html>
<head><title>Create Tables from MySQL using functions</title></head>
<body>
<?php
db_connect();
// assuming you have an auto increment id as the first column
$result = mysql_query("SELECT * FROM demo ORDER BY 1 DESC LIMIT 10");
print createTable(array_result($result));
?>
</body>
</html>
<?php
/**
* Quick mysql result function
*
* @param $result
* @return array
*/
function array_result($result)
{
$args = array();
while ($row = mysql_fetch_assoc($result)) {
$args[] = $row;
}
return $args;
}
/**
* Connect to db
*
* @param string $db_host
* @param string $db
*/
function db_connect($db_host = "localhost", $db = "apploymentdevs")
{
$connect = mysql_connect($db_host,"root", "root");
if (!$connect) {
die(mysql_error());
}
mysql_select_db($db);
}
/**
* Create a table from a result set
*
* @param array $results
* @return string
*/
function createTable(array $results = array())
{
if (empty($results)) {
return '<table><tr><td>Empty Result Set</td></tr></table>';
}
// dynamically create the header information from the keys
// of the result array from mysql
$table = '<table>';
$keys = array_keys(reset($results));
$table.='<thead><tr>';
foreach ($keys as $key) {
$table.='<th>'.$key.'</th>';
}
$table.='</tr></thead>';
// populate the main table body
$table.='<tbody>';
foreach ($results as $result) {
$table.='<tr>';
foreach ($result as $val) {
$table.='<td>'.$val.'</td>';
}
$table.='</tr>';
}
$table.='</tbody></table>';
return $table;
}
答案 6 :(得分:0)
我希望您知道如何使用<table>, <tr> and <td>.
在while循环中修复一个表,并使用"SELECT * FROM demo LIMIT 10"
作为SQL查询。