in reply to (ar0n) Re: Automating Firewall Log Reporting
in thread Automating Firewall Log Reporting

ar0n,

Thanks for taking time out to help me. When I throw in a:

print "@ips\n";
to see what data I get, I get the following output:
ARRAY(0x8101f68) ARRAY(0x81052b0) ARRAY(0x81052ec) etc.

Do you know what I am doing wrong?

Thanks, Dru

Replies are listed 'Best First'.
Re: Re: (ar0n) Re: Automating Firewall Log Reporting
by dru145 (Friar) on Jul 18, 2001 at 22:52 UTC
    I figured it out. Since this a multidimensional array, I have to pull my data out as such:
    $ips[0][0], $ips[1][0], $ips[1][1], etc.

    There's nothing like figuring something out yourself.