在HTML表格中列出MySQL数组

时间:2015-07-10 18:49:43

标签: php html mysql

我有一个脚本可以在HTML表中列出来自MySQL的数据。在MySQL中插入是动态的,每个类别都有不同数量的字段。因为数据是动态插入MySQL表内容我有每个FiledContent的记录。现在,当我选择数据时,我有非分割数组数据,而在HTML表格中,我得到了一个所有记录的内容字段。我想从内容中吐出记录,并为HTML头表中的每个字段名称获取分割的内容。

使用此脚本:

$sql = "SELECT FieldContent FROM Content JOIN Fields ON Content.ForField = Fields.FieldName WHERE Fields.ForUser = 'Viruss' AND Fields.ForCategory = 'Otpornici'";
    if ($result = $conn->query($sql)) {
        while($row = $result->fetch_assoc()) {
        echo "<th>".$row["FieldContent"]."</th>";       
    }      

我得到了这个结果:

enter image description here

1 个答案:

答案 0 :(得分:1)

那是因为你错误地使用了<th>代码。

<th>代表表头,因此表将继续生成标题而不是行。您需要使用<tr>标记来制作表格行。

$sql = "SELECT FieldContent FROM Content JOIN Fields ON Content.ForField = ...";
if ($result = $conn->query($sql)) {
    while($row = $result->fetch_assoc()) {
        echo "<tr>";
        echo "<td>$row["FieldContent"]['testcontent1']</td>";
        echo "<td>$row["FieldContent"]['testcontent2']</td>";
        echo "<td>$row["FieldContent"]['testcontent3']</td>";
        echo "</tr>";    
    }   
}   

您还应该使用<td>标记来表示表格数据。

现在您必须将内容拆分为多行。不建议您存储这样的数据。您可以使用逗号分隔值或其他方法

while($row = $result->fetch_assoc()) {
     echo "<tr>";
     $split = explode(' ', $row["FieldContent"]); // Split up the whole string
     $chunks = array_chunk($split, 3); // Make groups of 3 words
     $result = array_map(function($chunk) { return implode(' ', $chunk); }, $chunks);
     foreach($result as $value)
          echo "<td>$value</td>";
      echo "</tr>";    
}