Tiga hal:
- Jangan tautkan langsung ke tablesorter di tablesorter.com - buat salinan ke server Anda sendiri, atau gunakan salinan di CDN (ini dari garpu dari tablesorter di cdnjs.com ).
- Sertakan
<!DOCTYPE html>
di bagian atas HTML Anda jika tidak, IE akan berubah menjadi mode quirks dan cukup banyak membuat situs Anda terlihat buruk. -
Seperti yang disebutkan @MikeB, kode di atas membungkus setiap baris dalam
tbody
, perbaiki kode sebagai berikut (ini hanya cuplikan):echo "<table border='1' id='table' class='tablesorter'> <thead> <tr> <th>Species</th> <th>SKU</th> <th>Fry Count</th> <th>Juvie Count</th> <th>Adult Count</th> <th>Notes</th> <th>Location</th> <th>Owner</th> </tr> </thead><tbody>"; while ($row = mysqli_fetch_assoc($result)) { echo "<tr>"; echo "<td>" . $row['name'] . "</td>"; echo "<td>" . $row['sku'] . "</td>"; echo "<td>" . $row['quantityfry'] . "</td>"; echo "<td>" . $row['quantityjuv'] . "</td>"; echo "<td>" . $row['quantityadult'] . "</td>"; echo "<td>" . $row['notes'] . "</td>"; echo "<td>" . $row['location'] . "</td>"; echo "<td>" . $row['owner'] . "</td>"; echo "</tr>"; } mysqli_free_result($result); echo "</tbody></table>";