fetch row in php

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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  }