Hey, I have a bunch of variables passed through a QUERY_STRING like val_1, val_2, val_3, val_4, etc. -- they're radio's, not checkboxes. If I'm in a for loop, how can I construct it so that I can tell PHP to do something to the variable $var_$x where x is an int. I tried eval:
$val = eval("$var_$x;");
but it didn't work. I think eval is the key but I'm not sure. Any ideas?
Thanks,
Mike