答案 0 :(得分:2)
您的标题行不以</tr>
您的内容行不以</tr>
将这些行的结尾分别从<tr>
和<td>
更改为</tr>
请记住在循环后添加</table>
!
答案 1 :(得分:0)
<?php
$result=getContact();
?>
<table>
<thead>
<th>Last name</th>
<th>Adress</th>
<th>Zip</th>
</thead>
<tbody>
<?php
foreach($result as $person){
?>
<tr>
<td><?php echo $person['LastName']; ?></td>
<td><?php echo $person['Address']; ?></td>
<td><?php echo $person['Zip']; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
&#13;
答案 2 :(得分:0)
上述原因是正确的。此代码可以修复您的错误:
<?php
$html = "
<table>
<thead>
<th>Last name</th>
<th>Adress</th>
<th>Zip</th>
</thead>
<tbody>";
echo $html;
$result=getContact();
foreach($result as $person) {
$html = "
<tr>
<td>".$person['LastName']."</td>
<td>".$person['Address']."</td>
<td>".$person['Zip']."</td>
</tr>";
echo $html;
}
$html = "
</tbody>
</table>";
echo $html;