包含数据库数据的 HTML 表


HTML table with database data

我希望我的数据库数据显示在表中。我有以下代码,但它只是将所有内容粘贴在一起。

法典:

<?php
include ("core/db_connectie.php");
$template = file_get_contents("main.tpl.php");
$query = "SELECT * FROM platen";
$result = mysql_query($query) or die (mysql_error());
$cName = "";
$cValue = "";
while($row = mysql_fetch_assoc($result))
{   
    foreach($row as $columnName=>$columnValue)
    {
        $cName .= $columnName;
        $cValue .= $columnValue; 
    }
}
$template = str_replace("%%header%%", "<tr><th>". $cName ."</tr></th>", $template);
$template = str_replace("%%data%%", "<tr><td>". $cValue ."</tr></td>", $template);
echo $template;
?>

在我的 HTML 文件中,我有:

<table>
   %%header%%
   %%data%%
</table>

我得到的结果是:

IDAlbumBandStijlMediumDatumPrijsIDAlbumBandStijlMediumDatumPrijs
1TestTestereRockLP2013-06-1202TestTestereRockLP2013-06-1213

但我希望它像:

ID Album Band Stijl Medium Datum         Prijs
1  Test  Test Rock  LP     2013-06-1202  €10
2  Test  Test Rock  LP     2013-06-1202  €10
while($row = mysql_fetch_assoc($result))
{   
    foreach($row as $columnName=>$columnValue)
    {
        $cName .= $columnName;
        $cValue .= $columnValue; 
    }
}

需要

$i=0;
$values = array();
while ($row = mysql_fetch_assoc($result)) {
    foreach ($row as $key => $value) {
        $values[$key][$i] = $value;
    }
    $i++;
}
reset($arr);
foreach(current($arr) as $key => $value){
   $cName .= "<th>" . $key . "</th>";  
}  
while ($curr_row = current($arr)) {
    $cValue .= "<tr>";
    while (false !== ($curr_field = current($curr_row))) {
        $cValue .= "<td>" . $columnValue . "</td>"; 
        next($curr_row);
    }
    next($arr);
    $cValue .= "<'tr>";
} 

这是 (mysql_fetch_assoc函数([http://www.php.net/manual/en/function.mysql-fetch-assoc.php] 注释中提供的函数的修改版本和

$template = str_replace("%%header%%", "<tr><th>". $cName ."</tr></th>", $template);
$template = str_replace("%%data%%", "<tr><td>". $cValue ."</tr></td>", $template);

需要

$template = str_replace("%%header%%", "<tr>". $cName ."</tr>", $template);
$template = str_replace("%%data%%", "<tr>". $cValue ."</tr>", $template);

这是因为每个列都需要一个单独的 td 或 th 标签。