sql >> Database >  >> RDS >> Mysql

Hoe meerdere rijen uit mysql te selecteren met één query en ze te gebruiken in php

Gebruik herhaalde aanroepen naar mysql_fetch_assoc. Het staat beschreven in de PHP-handleiding.

http://php.net/manual/function.mysql-fetch-assoc .php

// While a row of data exists, put that row in $row as an associative array
// Note: If you're expecting just one row, no need to use a loop
// Note: If you put extract($row); inside the following loop, you'll
//       then create $userid, $fullname, and $userstatus
while ($row = mysql_fetch_assoc($result)) {
    echo $row["userid"];
    echo $row["fullname"];
    echo $row["userstatus"];
}

Indien nodig kunt u dit gebruiken om een ​​multidimensionale array op te bouwen voor gebruik in andere delen van uw script.



  1. Hoe MySQL strikte modus in- of uitschakelen in localhost (xampp)?

  2. De beste manier om te testen of een rij bestaat in een MySQL-tabel

  3. Maak een datum van dag, maand en jaar met T-SQL

  4. Hulp bij het bewerken van JSON om een ​​array te maken in plaats van een 'woordenboek'