Bạn có thể thử một cái gì đó như thế này
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
Bây giờ bạn có thể có
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)
Bạn có thể thử một cái gì đó như thế này
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
Bây giờ bạn có thể có
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)