fetch row in php

Solutions on MaxInterview for fetch row in php by the best coders in the world

showing results for - "fetch row in php"
Nyle
24 Jun 2020
1$sql = "SELECT Lastname, Age FROM Persons ORDER BY Lastname";
2$result = $mysqli -> query($sql);
3while ($row = $result -> fetch_row()) {
4    //statements
5  }