Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

PHP, MYSQL, tabel HTML dengan tablesorter

Tiga hal:

  1. 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 ).
  2. Sertakan <!DOCTYPE html> di bagian atas HTML Anda jika tidak, IE akan berubah menjadi mode quirks dan cukup banyak membuat situs Anda terlihat buruk.
  3. 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>";
    



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jenis kolom apa yang digunakan SQLAlchemy untuk Teks di MySQL?

  2. Urutan eksekusi kondisi di MySQL

  3. apa yang salah dengan kueri Magento ini?

  4. PEMESANAN MYSQL UNION

  5. Kembalikan hasil kueri berdasarkan tanggal hari ini di SQL (MySQL) Bagian 2