Mysql
 sql >> Base de données >  >> RDS >> Mysql

Mysqli récupère le tableau nième ligne

Vous pouvez essayer quelque chose comme ça

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

Vous pouvez maintenant avoir

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