sql >> Base de Datos >  >> RDS >> Mysql

PHP, MYSQL, tabla HTML con clasificador de tablas

Tres cosas:

  1. No enlace directamente a tablesorter en tablesorter.com:haga una copia en su propio servidor o use una copia en un CDN (esto es de mi horquilla de tablesorter en cdnjs.com ).
  2. Incluya un <!DOCTYPE html> en la parte superior de su HTML, de lo contrario, IE cambiará al modo peculiar y hará que su sitio se vea mal.
  3. Como mencionó @MikeB, el código anterior envuelve cada fila en un tbody , corrija el código de la siguiente manera (esto es solo un fragmento):

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