Du kan prøve noget som dette
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
Du kan nu få
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)
Du kan prøve noget som dette
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
Du kan nu få
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)