This likely is not what you want:
my $TotalEmails = $user1 + $user2;Most likely you wanted
my @TotalEmails = (@$user1, @$user2);
If you allow Perl to tell you when you're doing non-sensical stuff, please add the following two lines to the top of your script:
use strict; use warnings;
In reply to Re: Selecting DB
by Corion
in thread Selecting DB
by frank1
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |