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[] = $statement->FetchObject()){}
Just Curious that's all
Update:
I do understand that Cleaner code is much better then Less code, but as I never used this method before it was mere curiosity for pros and cons.