Ben aşağıdaki kodu vardır:
$sql_latest = "SELECT * FROM tbl_latest ORDER BY id DESC LIMIT 0,3 ";
$results_latest = $mysqli->query($sql_latest);
while($row = $results_latest->fetch_object())
{
echo $row->id;
}
Ben böyle bir şey yapmak, böylece nasıl bir diziye sonuçlar alabilirsiniz
echo $row[1]; echo $row[2]; echo $row[2];