in reply to Re^4: xml simple not a hash reference
in thread xml simple not a hash reference
It prints out: HASH(0x27acfbc)This indicates that your $mealtype variable does not hold a scalar or array, but a reference to a hash.The easiest way to print that is probably to use Data::Dumper:
use Data::Dumper; print Dumper($mealtype);
- Comment on Re^5: xml simple not a hash reference
- Download Code
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: xml simple not a hash reference
by Anonymous Monk on Dec 29, 2010 at 09:10 UTC |