Yeah, I did that and it seems to work fine, one final question on this subject, the data output looks like this:
$VAR5 = 'Test2';
$VAR6 = {
'ShowHome' => 'Home',
'RightNavExpirationDate' => 20010520,
'RightNavLaunchDate' => 20010510,
'ShowPersonal' => 'Personal',
'SmallGraphic' => '/templatedata/components/msn.gif'
};
Just for one instance, is this telling me that 'Test2' is the key and {the whole list from var6} are the values? That is how I am interpreting it... | [reply] [d/l] |
use Data::Dumper;
print Dumper \%home_dcr_files; # ref to hash, for nicer formatting
| [reply] [d/l] |
You had Dumper called wrong. Because it's often so one can
read it nonetheless. Call it "Dumper \%hash" ("\" is important)
and you will see what it really means:)
| [reply] |