in reply to Understanding this line of Code
$Aoh{ testa } = @{ exec_select ($sql ) } [0] ->{ home1 };
This piece of code basically does the following
"Can't use an undefined value as a HASH reference..."
This error is caused by the first element in the above array being undefined. Therefor it can't be dereferenced as a hash.
Cheers, Flo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Understanding this line of Code
by davorg (Chancellor) on Jul 18, 2006 at 13:17 UTC | |
by rafl (Friar) on Jul 18, 2006 at 13:40 UTC |