[PHP] combining two variables to make one???

2003-12-22 Thread Tristan . Pretty
I want to out put three bits of text... I want my end page to look like this... = result 1 result 2 result 3 = here's the code I've got... === ? $i = 1; while ($i = 3) { $options$i = result $i; } ? html body ?=$option1 ? ?=$option2 ? ?=$option3 ?

Re: [PHP] combining two variables to make one???

2003-12-22 Thread Chris Boget
? $i = 1; while ($i = 3) { $options$i = result $i; } ? You want this: ${$options{$i}} = result $i; For the sake of clarity I typically do something like the following: $i = 1; while ($i = 3) { $varName = $options . $i; ${$varName} = result $i; } Chris -- PHP General Mailing

Re: [PHP] combining two variables to make one???

2003-12-22 Thread Tristan . Pretty
Cheers... Doesn't work for me though...? What do the '{' mean when declaring the variable? Chris Boget [EMAIL PROTECTED] 22/12/2003 14:16 To [EMAIL PROTECTED], [EMAIL PROTECTED] cc Subject Re: [PHP] combining two variables to make one??? ? $i = 1; while ($i = 3) { $options$i

Re: [PHP] combining two variables to make one???

2003-12-22 Thread Chris Boget
Doesn't work for me though...? Which isn't working? This: ${$options{$i}} = result $i; or this: $i = 1; while ($i = 3) { $varName = $options . $i; ${$varName} = result $i; } What do the '{' mean when declaring the variable? I can't remember where it is in the documentation, but

Re: [PHP] combining two variables to make one???

2003-12-22 Thread Tristan . Pretty
I am a monkey... I had me angle bracket the wrong way round... what a stoner...! Chris Boget [EMAIL PROTECTED] 22/12/2003 15:04 To [EMAIL PROTECTED] cc [EMAIL PROTECTED] Subject Re: [PHP] combining two variables to make one??? Doesn't work for me though...? Which isn't working