I have a form that needs to send it's data to multiple recipients (35 in all); is there an easier way to do this? <snip> # Region office email addresss my @offices = ('[EMAIL PROTECTED]', '[EMAIL PROTECTED]', '[EMAIL PROTECTED]');
my $email_all = @offices;
</snip>
This is basically non-sensical...
"easier way to do" what? All you have shown us is an array definition and a line of code that stores the number of elements in the array to a variable. You haven't told us how the form sends its data, what the data is, or how it is sent (though I guess I would assume email since those look like e-mail addresses), or what is difficult...
http://danconia.org
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]