in reply to Not a HASH reference

From just looking at the code (I didn't run it for the same reasons liverpole mentioned), I'd say that you probably want to

push(@$Big_Array, $Values);

instead of pushing a reference to a hashref (\$Values)...

Replies are listed 'Best First'.
Re^2: Not a HASH reference
by NateTut (Deacon) on Apr 23, 2007 at 20:21 UTC
    Thanks! That was it.