[PHP] while-do +array

2007-10-31 Thread Steven Macintyre
Hiya, I have the following code ... which only seems to result in one item ... which is incorrect ... can anyone spot my problem? if ($armbase != ) { $options = explode(,, $armbase); $text .= 'table tr'; $get_endRow = 0;

Re: [PHP] while-do +array

2007-10-31 Thread Robert Cummings
On Wed, 2007-10-31 at 13:02 +0200, Steven Macintyre wrote: Hiya, I have the following code ... which only seems to result in one item ... which is incorrect ... can anyone spot my problem? Your subject line says while-do + array, following code contains a do-while loop. We can't debug the

RE: [PHP] while-do +array

2007-10-31 Thread Steven Macintyre
Your subject line says while-do + array, following code contains a do-while loop. Apologies :) We can't debug the script very well without a sample input since we don't know how many times the loop should run. To debug yourself, try using print_r() to see exactly what the following

RE: [PHP] while-do +array

2007-10-31 Thread Robert Cummings
On Wed, 2007-10-31 at 16:20 +0200, Steven Macintyre wrote: Your subject line says while-do + array, following code contains a do-while loop. Apologies :) We can't debug the script very well without a sample input since we don't know how many times the loop should run. To debug

Re: [PHP] while-do +array

2007-10-31 Thread Robin Vickery
On 31/10/2007, Steven Macintyre [EMAIL PROTECTED] wrote: Hiya, I have the following code ... which only seems to result in one item ... which is incorrect ... can anyone spot my problem? if ($armbase != ) { $options = explode(,, $armbase); $text .=