Re: [PHP] Simple while loop skipping first row of array

2004-02-15 Thread Verdon Vaillancourt
That did the trick, and I learned something new. thanks :) verdon On 2/15/04 11:38 AM, "Duncan" <[EMAIL PROTECTED]> wrote: > Problem is, that the first row is already in the $categories variable - > since you have the first mysql_fetch_array call there. > change it to: > > echo ""; > $result = m

[PHP] Simple while loop skipping first row of array

2004-02-15 Thread Verdon Vaillancourt
I'm not sure I phrased my subject well, but... The following is just to build a select menu from a table query result set. It sort of works, but doesn't return the first row in the result set, ie if I have the following rows in the table 'cats'; id title == 1 Pears 2 Oranges 3 Appl