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

Mysqli buscar matriz enésima fila

Puedes probar algo como esto

$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
   $arrayofrows = $row;
}

Ahora puede tener

$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)