http://qs1969.pair.com?node_id=124951


in reply to Checkbox values

chriso,
I believe that it's simply a matter of your variables being surrounded by single quotes.
# this will expand the variables print "$labels[$counter]"; #this will print the literal variables, no expansion: print '$labels[$counter]';

mkmcconn