Posted by Akhenaten on 05/20/07 23:38
> mysql_fetch_array returns the results from ONE ROW. Since you are
> only selecting one column in your query, you should have only one
> element in the array. If you want the results from more than one
> row, loop calling mysql_fetch_array. Note that if you try doing
> this and then merging the arrays, you're going to merge a whole
> lot of arrays with a "0" index and likely you will end up with an
> array with a single "0" index.
>
That I did not know..... Thank you.
../JLK
[Back to original message]
|