大家好我想在php中显示来自MySQL的数据到列表视图。我正在创建一个分类广告网站在PHP。我只需要在listview中显示字段结果,如
olx.com.pk/rawalpindi
答案 0 :(得分:1)
您可以使用<table>
或<div>
作为列表视图:
<table>
<thead>
<th></th>
<th></th>
</thead>
<tbody>
<?php
$query = mysql_query();
while($row = mysql_fetch_array($query)){
echo "<tr>$row['index1']</tr>";
echo "<tr>$row['index2']</tr>";
?>
</tbody>
</table>