Is it possible to make a while loop for a function but in stead of just echo it's result, store it in an array???
values in database for example: one, two, three, four.
In a normal way I do:
While (havenumbers()) {
echo havenumber(); // displays "one" etc.
}
In stead of the echo I would like to store this in an array:
$myarray = array('one','two','three','four');