Theuerkorn Johannes wrote at Mon, 12 Aug 2002 10:08:18 +0200:

> But if I try to read the Values from it:
> 
> my $erg= $ergebnis{$seriennr};
> 
> print $$erg->{passfail}[0];
> 
> I only get the Hash Adress...
> 
> Whats the Problem with this?

write it as
print $erg->{passfail}->[0];


Greetings,
Janek


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to