Puoi provare qualcosa del genere
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
Ora puoi avere
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)
Puoi provare qualcosa del genere
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
Ora puoi avere
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)