Mysql
 sql >> Database >  >> RDS >> Mysql

Come creare e riempire un array php dal database Mysql

RTM

Esempio n. 1 Recupera tutte le righe rimanenti in un set di risultati

<?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);
?>