On 3/3/06, Timothy Johnson <[EMAIL PROTECTED]> wrote:
> Is the typo "$dhcp{$wrkst}-{network}" in your production script?
snip

Also, you should not say $hash{key1}->{key2}.  You should always say
$hash{key1}{key2}.  The arrow is implied after the first dereference,
so you can say things like $hashref->{key1}{key2}.  Note that this
works with any mix of arrays and hashes: $hash_of_arrays{key1}[10].

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to