Quantcast
Channel: PHP Freaks: PHP Help
Viewing all articles
Browse latest Browse all 13200

mysqli and arrays

$
0
0

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 ?


Viewing all articles
Browse latest Browse all 13200

Trending Articles