in reply to Storing an array of variables

Do you realy need the array?

foreach my $line ($hall_name, $contact_name, $contact_email, $contact_ +telephone) { print "$line<br/>"; $line=~s/'//g; }

Jenda
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.
   -- Rick Osborne

Edit by castaway: Closed small tag in signature

Replies are listed 'Best First'.
Re: Re: Storing an array of variables
by CodeJunkie (Monk) on May 21, 2003 at 16:11 UTC

    Lots of great ideas, thanks. I actually ended up using this one because it seemed the simpliest and worked ;-)

    Cheers,
    Tom.