condition-blocks

Wrong or Right ? While loops.

Heya guys, now ive never done this method before and i just tried it to see if it would work and it works like a dream. Usually people tend to do this way. $tags = array(); while($row = $statement->FetchObject()) { $tags[] = $row; } but would it be faster or just less code if i done it this way. $tags = array(); while($tags[] =...