Mysql
 sql >> Datenbank >  >> RDS >> Mysql

PHP, MYSQL, HTML-Tabelle mit Tabellensortierer

Drei Dinge:

  1. Verlinken Sie nicht direkt auf tablesorter unter tablesorter.com - erstellen Sie eine Kopie auf Ihrem eigenen Server oder verwenden Sie eine Kopie bei einem CDN (dies ist von meinem fork of tablesorter unter cdnjs.com ).
  2. Fügen Sie einen <!DOCTYPE html> hinzu oben in Ihrem HTML-Code, sonst wechselt der IE in den Quirks-Modus und lässt Ihre Website ziemlich schlecht aussehen.
  3. Wie @MikeB erwähnt, umschließt der obige Code jede Zeile in einem tbody , korrigieren Sie den Code wie folgt (dies ist nur ein Ausschnitt):

    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>";