这很复杂(对我来说)的原因是表的每一列都是从一个单独的 MySQL 表加载的,每个 MySQL 表都有不同数量的记录。最初我以为我可以开始从左上角到右下角逐列、逐个单元格地生成 html 表,但这不起作用,因为每个 MySQL 表都有不同长度的记录,这会生成格式错误的 html 表。你有什么建议吗?
到目前为止我的想法:
- 获取 MySQL 中所有表的列表,这些表决定了列数
- 从记录最多的表中获取计数
- 使用参数创建一个表(表的数量为列,最大的行数为
- 用相应的记录更新每个单元格,但不太确定如何
根据要求,一些代码:
$tables = mysql_query("show tables");
$output = "<table border=1><thead><tr>";
while($table = mysql_fetch_array($tables)) {
$output .= "<td>";
$output .= $table[0];
$output .= "</td>";
$tableNames[] = $table[0];
}
$output .= "</tr></thead>";
$output .= "<tbody>";
//Get a count of the table with the most records
for($i=0; $i<count($tableNames); $i++ ){
$currentTable = $tableNames[$i];
$tableContent = mysql_query("select * from $currentTable") or die("Error: ".mysql_error());
//Generating all content for a column
$output .= "<tr>";
while($content = mysql_fetch_array($tableContent)){
//generating a cell in the column
$output .= "<td>";
$output .= "<strong>".$content['subtheme'].": </strong>";
$output .= $content['content'];
$output .= "</td>";
}
$output .= "</tr>";
}
$output .= "</tbody>";
$output .= "</table>";
这是错误的,不仅因为它生成了一个格式错误的表,还因为它把列转换为行......
任何帮助,将不胜感激