Mysql
 sql >> Datenbank >  >> RDS >> Mysql

So erstellen und füllen Sie ein PHP-Array aus einer MySQL-Datenbank

RTM

Beispiel #1 Alle verbleibenden Zeilen in einer Ergebnismenge abrufen

<?php
$sth = $dbh->prepare("SELECT name, colour FROM fruit");
$sth->execute();

/* Fetch all of the remaining rows in the result set */
print("Fetch all of the remaining rows in the result set:\n");
$result = $sth->fetchAll();
print_r($result);
?>