sql >> Database >  >> RDS >> Mysql

Hoe tabelrijen uit de db (php) te echoën

$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. Is er een manier om Java op Oracle 11g XE te installeren?

  2. Stel lege strings ('') in op NULL in de hele database

  3. Bereken het aantal seconden sinds een bepaalde datum/tijd in SQLite

  4. Oracle SqlPlus - uitvoer opslaan in een bestand maar niet op het scherm weergeven