Code Comments
Programming Forum and web based access to our favorite programming groups.I have 2 components. One builds a hash. the next needs to read it.
ex: "A" module
<%share>
my %hash = ( 'dogs' => 'ok' ,'cats'=>'maybe');
</%share>
"B" module
<%perl>
my $dogs = $hash{'dogs'};
my $cats = $hash{'cats'};
print "dogs are $dogs and cats are $cats\n";
</%perl>
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.