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

Cara menggemakan baris tabel dari db (php)

$sql = "SELECT * FROM MY_TABLE";
$result = mysqli_query($conn, $sql); // First parameter is just return of "mysqli_connect()" function
echo "<br>";
echo "<table border='1'>";
while ($row = mysqli_fetch_assoc($result)) { // Important line !!! Check summary get row on array ..
    echo "<tr>";
    foreach ($row as $field => $value) { // I you want you can right this line like this: foreach($row as $value) {
        echo "<td>" . $value . "</td>"; // I just did not use "htmlspecialchars()" function. 
    }
    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. Bagaimana cara menampilkan kueri terakhir yang dieksekusi di MySQL?

  2. Tidak dapat menghapus atau memperbarui baris induk:batasan kunci asing gagal

  3. bergabung bersyarat di mysql

  4. Kesalahan Teratas yang Harus Dihindari dalam Replikasi MySQL

  5. Jumlah kumulatif lebih dari satu set baris di mysql