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

Atur tabel secara berdampingan alih-alih lurus ke bawah saat melakukan while-loop

Bungkus hasilnya di tabel lain.

echo "<table>";
$count = 0;
$num_columns = 2;  // or 3
while ($rc = mysql_fetch_array($results_course)) {
    if ($count++ % $num_columns == 0) {
        echo "<tr>";
    }
    echo "<td>";
    // previous table code here
    echo "</td>";
    if ($count % $num_columns == 0) {
      echo "</tr>";
    }
}
if ($count % $num_columns > 0) {
  echo "</tr>";
}
echo "</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. Ketika mysql_query mengembalikan false

  2. 'Fungsi VALUES' MySQL tidak digunakan lagi

  3. Unggah dan penyimpanan beberapa file gambar PHP ke folder dan database

  4. Mencari tutorial tentang cara membangun sistem pesan pribadi menggunakan PHP

  5. Bagaimana menerapkan penguncian pesimis dalam aplikasi web php/mysql?