我有一个数据库,它通过显示数据库中所有员工的名字和姓氏来工作,我可以显示它,但是当它显示时,它没有被格式化。我想尝试将结果放在表格中,但我不确定我会怎么做。
我以为我必须回声json_encode(echo.<td>$posts</td>)
或类似的东西
<?php foreach($query as $row): ?>
<tr>
<td>
<?php $arr = array(
'first_name' => $row->first_name,
'last_name' => $row->last_name,
); ?>
<?php $posts[] = $arr;?>
</tr>
<?php endforeach; ?>
<?php echo json_encode($posts);?>
这就是它现在的显示方式
[{"first_name":"Georgi","last_name":"Facello"},
{"first_name":"Georgi","last_name":"Atchley"}]