Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Passing a hash between subs

by OM_Zen (Scribe)
on Jan 30, 2003 at 16:48 UTC ( [id://231374]=note: print w/replies, xml ) Need Help??


in reply to Passing a hash between subs

Hi ,

The $ref in the sub foo where you get it and I guess , from the way you populate your hash in the sub bar , you should be getting the location by having
sub foo { my $location_text = $locations('id'); }


The passing of hash can be through a reference too like

sub bar { return \%locations; } sub foo { $locations = &bar($dbh); print "The reference returned from bar is : [$locations] +\n"; %location_Names = %$locations; }


You can use some debugging to see the hash values in course of program like use Data::Dumper which will give you the hash's values in course of your program in tree forms itself , so that it shall be easy and helpful

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://231374]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-20 02:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found