Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I have
$result = mysqli_query(...);
I know how to get the number rows, but I need the actual content. In regular mysql it like this:
while($row = mysql_fetch_array($result)){...}
how do I do this with Mysqli?