Jump to content

mysqli and arrays


Manixat

Recommended Posts

Hello freaks.

 

Im new to OOP and I'm just starting to practice using this mysqli object. What I want to do is fetch a bunch of results and store them in an array and what I've done is this

 

 

 
$result = $db->query("SELECT * FROM `stuff`");
while($row = $result->fetch_assoc()){
$stuff[] = $row;
}

 

and I can't help but wonder if there is a more efficient way of doing this, for example without looping ?

Link to comment
https://forums.phpfreaks.com/topic/275119-mysqli-and-arrays/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.