Re: [PHP] Re: Form Loop

2008-10-19 Thread Ashley Sheridan
On Sun, 2008-10-19 at 09:31 -0500, Shawn McKenzie wrote: > Rick Pasotto wrote: > > On Sat, Oct 18, 2008 at 08:07:26PM -0500, Shawn McKenzie wrote: > >> Terry J Daichendt wrote: > >>> I'm trying to create a form with a loop. I need to append a value to a > >>> field name each time through the loop.

Re: [PHP] Re: Form Loop

2008-10-19 Thread Shawn McKenzie
Rick Pasotto wrote: > On Sat, Oct 18, 2008 at 08:07:26PM -0500, Shawn McKenzie wrote: >> Terry J Daichendt wrote: >>> I'm trying to create a form with a loop. I need to append a value to a >>> field name each time through the loop. For Instance: >>> >>> while ($row = mysql_fetch_assoc($result)) { >

Re: [PHP] Re: Form Loop

2008-10-18 Thread Rick Pasotto
On Sat, Oct 18, 2008 at 08:07:26PM -0500, Shawn McKenzie wrote: > Terry J Daichendt wrote: > > I'm trying to create a form with a loop. I need to append a value to a > > field name each time through the loop. For Instance: > > > > while ($row = mysql_fetch_assoc($result)) { > > $x=1; > > e

[PHP] Re: Form Loop

2008-10-18 Thread Shawn McKenzie
Terry J Daichendt wrote: > I'm trying to create a form with a loop. I need to append a value to a > field name each time through the loop. For Instance: > > while ($row = mysql_fetch_assoc($result)) { > $x=1; > echo "";echo " name='quantity_' size='2' value='$row[qty]' />"; > echo