MySQL denir HTML tablo satırları sıralamak için nasıl

0 Cevap php

Ben böyle bir temel şey olduğunu biliyorum, ama bir Google arama nasıl th bağlantılarla sonra tekrar sıralamak satırlar bana göstermedi.

Ben bu var:

<table border="1">
  <tr>
    <th>Type:</th>
    <th>Description:</th>
    <th>Recorded Date:</th>
    <th>Added Date:</th>
  </tr>

<?php 
while($row = mysql_fetch_array($result)){
    ?>
    <tr>
        <td><?php echo $row['type'] ?></td>
        <td><?php echo $row['description'] ?></td>
        <td><?php echo $row['recorded_date'] ?></td>
        <td><?php echo $row['added_date'] ?></td>
    </tr>
    <br /> 


  <?php 
}
mysql_close();
?>
</table>

I type ve sıralama alfabetik tıklayın, ve ya Recorded Date veya Added Date ve tarihe göre sıralamak tıklayın gerekiyor. Ben MySQL sorguları yapmak olması gerektiğini görüyoruz, ama a href etiketleri ile Koşullamalar olarak kurarım?

0 Cevap