Você pode tentar algo assim
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
Agora você pode ter
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)