RE: Re[2]: [PHP] Variables in variable names

2001-05-09 Thread Matt Schroebel
> or even try > > > > This should AFAIK result in an Array, but I'm not sure if > empty fields are put in. You will get the empty fields except for checkboxes. For checkboxes only the checked elements come through so you need values that determine which box was checked. So say you have:

Re[2]: [PHP] Variables in variable names

2001-05-09 Thread Adaran (Marc E. Brinkmann)
Hi seriousj, Wednesday, May 09, 2001, 1:19:55 PM, you wrote: seriousj> The info is stored in the variables intitally by information entered by a seriousj> user on a webpage, can you have the browser store the info in an array and seriousj> have it passed by a form "post" command? Try ... o

Re: [PHP] Variables in variable names

2001-05-09 Thread heinisch
At 09.05.01 23:08, you wrote: >Hello, > I need some help (newbie). >I have some variable names with the form: >$name_1 >$name_2 >$name_3 >$name_4... >I want to access them by doing something like this: >$i=0 >$name_$i >This doesn't work, how do I include another variable in the name of a >variab

Re: [PHP] Variables in variable names

2001-05-09 Thread seriousj
Thanks, that worked great! John -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] Variables in variable names

2001-05-09 Thread Taylor, Stewart
lto:[EMAIL PROTECTED]] Sent: 09 May 2001 12:20 To: [EMAIL PROTECTED] Subject: Re: [PHP] Variables in variable names The info is stored in the variables intitally by information entered by a user on a webpage, can you have the browser store the info in an array and have it passed by a form "

RE: [PHP] Variables in variable names

2001-05-09 Thread Ralph Guzman
As an alternative you can use associative arrays $i = 0; $i = 1; $i = 2; $i = 3; $name[$i]; -Original Message- From: seriousj [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 4:09 AM To: [EMAIL PROTECTED] Subject: [PHP] Variables in variable names Hello, I need some help

Re: [PHP] Variables in variable names

2001-05-09 Thread seriousj
IL PROTECTED]">news:[EMAIL PROTECTED]... > Maybe an array would be more appropriate. > e.g. > > $name[$i] = > . > . > > > > > -Stewart > -Original Message- > From: seriousj [mailto:[EMAIL PROTECTED]] > Sent: 09 May 2001 12:09 > To: [EMAIL P

RE: [PHP] Variables in variable names

2001-05-09 Thread Taylor, Stewart
Maybe an array would be more appropriate. e.g. $name[$i] = . . -Stewart -Original Message- From: seriousj [mailto:[EMAIL PROTECTED]] Sent: 09 May 2001 12:09 To: [EMAIL PROTECTED] Subject: [PHP] Variables in variable names Hello, I need some help (newbie). I have some variable

[PHP] Variables in variable names

2001-05-09 Thread seriousj
Hello, I need some help (newbie). I have some variable names with the form: $name_1 $name_2 $name_3 $name_4... I want to access them by doing something like this: $i=0 $name_$i This doesn't work, how do I include another variable in the name of a variable?. Cheers John -- PHP General M