in reply to Help on fetchrow_hashref!
Possibly try putting a % sign in front of the {}
%info = %{$hashref};
(!(scalar %info)) { # what does this mean?
Running scalar on the hash, returns the number of keys the hash has, so it's checking for an empty list.
|
|---|