如何在php中的listview中显示来自MySQL数据库的数据

时间:2014-12-21 11:19:12

标签: php html mysql css listview

大家好我想在php中显示来自MySQL的数据到列表视图。我正在创建一个分类广告网站在PHP。我只需要在listview中显示字段结果,如

olx.com.pk/rawalpindi

1 个答案:

答案 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>