in reply to
Storing an array of variables
my @elements=(\$hall_name,\$contact_name,\$contact_email,\$contact_telephone);
you can also use this idiom:
my @elements = \( $hall_name, $contact_name, $contact_email, $contact_telephone );
Comment on
Re: Storing an array of variables
Select
or
Download
Code
In Section
Seekers of Perl Wisdom