Mysql
 sql >> Database >  >> RDS >> Mysql

PHP, MySQL, tabella HTML con tablesorter

Tre cose:

  1. Non collegarti direttamente a tablesorter su tablesorter.com:crea una copia sul tuo server o usa una copia su un CDN (questo è del mio fork di tablesorter su cdnjs.com ).
  2. Includi un <!DOCTYPE html> nella parte superiore del tuo HTML, altrimenti IE passerà alla modalità stranezze e farà sembrare il tuo sito praticamente scadente.
  3. Come menzionato da @MikeB, il codice sopra racchiude ogni riga in un tbody , correggi il codice come segue (questo è solo uno snippet):

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