Drie dingen:
- Link niet rechtstreeks naar tablesorter op tablesorter.com - maak een kopie naar uw eigen server, of gebruik een kopie op een CDN (dit is van mijn vork van tablesorter op cdnjs.com ).
- Voeg een
<!DOCTYPE html>
toe bovenaan uw HTML, anders verandert IE in de quirks-modus en ziet uw site er min of meer slecht uit. -
Zoals @MikeB al zei, wikkelt de bovenstaande code elke rij in een
tbody
, corrigeer de code als volgt (dit is slechts een fragment):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>";