in reply to hash reference

You're missing the => operator for creating the hash within the parent hash.
%employee = ( $email => { Name => $foo, Address => $foo2, Telephone=> $foo3 }, );
-fp

Replies are listed 'Best First'.
Re: Re: hash reference
by tbone (Beadle) on Feb 13, 2003 at 19:47 UTC
    Thanks, but thats not it. I built my hash through a series of loops. I just wanted to show what it looks like. I have tested my hash and it is built correctly.