Ok folks - it's been a long shift and my brain is not at full power -
Heres the situation -
page1 contains a form with 10 or so series of radio button selections (yes/ no) - their names on the form are
rb_yesno1
rb_yesno2
rb_yesno3
etc...
page 2 - contains a script to simply display what was entered in the previous page - [think confirmation page]
I've created a loop to go through the number of radio buttons - so I can retrieve their values.
Anybody have any idea why when I try and create varaibles names dynamically via the loop my variables are interpreted as strings.
note: not actual code
ex:
$counter = 1;
while()
{
$choice = "\$rb_yesno".$counter;
print("$choice <BR>");
$counter++;
}
I get the variable name and not the value printed -
if I'm being dumb slap me later - right now I'd like to get this done...
cheers all