下面的代码<td>
为每个字段生成重复的元素。我正在尝试根据 PDO 查询的结果生成一个简单的 HTML 表。谁能告诉我为什么每个字段都被重复?
$data = $conn->query('SELECT * FROM students');
// Print results in a HTML table
echo '<table border="1" cellpadding="5">';
foreach($data as $row) {
echo '<tr>';
foreach ($row as $field) {
echo '<td>' . $field . '</td>';
}
echo '</tr>';
}
echo '</table>';
谢谢