in reply to Spreadsheet::WriteExcel::Big is Bigger
is suspect. As soon as this scope ends, these two variables (and their values, of course) disappear, yet you are using them in the push statement. I see you are using use strict; -- doesn't Perl complain about these undefined values?my $ip1 = $1; my $port1 = $2;
I would declare those two variables up higher, near the split statement -- then they stay in scope long enough to be used by the push statement.
Sure hope I'm not missing anything obvious here. :(
--t. alex
"Of course, you realize that this means war." -- Bugs Bunny.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(shockme) Re: Re: Spreadsheet::WriteExcel::Big is Bigger
by shockme (Chaplain) on Jan 23, 2002 at 22:25 UTC |