RE: [PHP] Getting the data for MySQL and then putting it back withPHP - at a loss!

2002-02-22 Thread Michael R @ Spy
From: "george Pitcher" <[EMAIL PROTECTED]> > To: "Michael Romagnoli" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Friday, February 22, 2002 2:40 PM > Subject: Re: [PHP] Getting the data for MySQL and then putting it > back withPHP - at a lo

RE: [PHP] Getting the data for MySQL and then putting it back withPHP - at a loss!

2002-02-22 Thread Michael R @ Spy
CTED] > Subject: Re: [PHP] Getting the data for MySQL and then putting it back > withPHP - at a loss! > > > Michael, > > Been there recently! > > You want to use variable variables: > > $index=0; > for (index=0; $index < $rowcount; $index++){ > $formvar=&#

Re: [PHP] Getting the data for MySQL and then putting it back withPHP - at a loss!

2002-02-22 Thread Andrey Hristov
Sent: Friday, February 22, 2002 2:40 PM Subject: Re: [PHP] Getting the data for MySQL and then putting it back withPHP - at a loss! > Michael, > > Been there recently! > > You want to use variable variables: > > $index=0; > for (index=0; $index < $rowcount; $index++){

Re: [PHP] Getting the data for MySQL and then putting it back withPHP - at a loss!

2002-02-22 Thread george Pitcher
Michael, Been there recently! You want to use variable variables: $index=0; for (index=0; $index < $rowcount; $index++){ $formvar='formvar'.$index; $formvar=$$formvar; Do the last two lines for each piece of data you want to handle. Think about how you are isolating the formvars on the submit