sql >> Base de Datos >  >> RDS >> Mysql

Cómo crear y llenar una matriz php desde la base de datos Mysql

RTM

Ejemplo #1 Obtener todas las filas restantes en un conjunto de resultados

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