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
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.