I've got a Perl script with a couple of multidimensional arrays (@menu_info, @menu_sell, etc). Now, I've got a variable that defines which array to select. This one, $foo, contains a value such as "info" or "sell", etc.
And I need select an element in the correct array, using $foo's current value... $menu_$foo doesn't seem to work when trying to select the correct array.
Ralph.