Anda dapat mencoba sesuatu seperti ini
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
Anda sekarang dapat memiliki
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)
Anda dapat mencoba sesuatu seperti ini
$arrayofrows = array();
while($row = mysqli_fetch_array($result))
{
$arrayofrows = $row;
}
Anda sekarang dapat memiliki
$arrayofrows[0] //(to get the first row)
$arrayofrows[1] //(2nd row)