我有一个php数组,其中包含来自我的数据库$name[] = $row['name']
的信息。容器email
,age
和screen-resolution
还有大约3个其他行。
name
{---------- {1}} {---------- {1}} ---------- {{ 1}}
email
{--------- {1}} -------- age
{--------- {1}} < / p>
screen-res
{--------- {1}} -------- name1
{--------- {1}} < / p>
email1
{---------- {1}} {---------- {1}} ---------- {{ 1}}
age1
{--------- {1}} {---------- {1}} ------ res1
- ------- name2
------ email2
------- age2
------ res2
name
{--------- {1}} {---------- {1}} ------ email
- ------- age
------ screen-res
------- name1
name2
答案 0 :(得分:2)
您正在错误地形成表格。你的桌子看起来像这样。好消息是您只需要一个数组来存储所有数据
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Age</th>
<th>Screen-Res</th>
</tr>
<?php
foreach ($rows as $row) {
echo "<tr>";
echo "<td>".$row['nameVal']."</td>";
echo "<td>".$row['emailVal']."</td>";
echo "<td>".$row['ageVal']."</td>";
echo "<td>".$row['screen-resVal']."</td>";
echo "</tr>";
}
?>
</table>