hi,
i got the following arrays:
$ar = array(1,2,3,4,5);
$ar2 = array(1,4,5);
etc.
now i got a variable submitted via a form, $var, which's content is the name of one of the above arrays, e.g. "ar2".
and now i want to do: echo $var[1], e.g.
i don't get the desired "4", but "r". so i get the second element of the array's name, not of its content...
any hints? tia!