in reply to Sorting hashes with values
you can now access the events by:my %date; $date{1.1.2001}="Happy new year"; push @{$date{1.1.2001}, "Don't drink and drive";
This is maybe easier than do it the other way around.for $event (@{$date{1.1.2001}) { print "$event on 1.1.2001\n" }
----------------------------------- --the good, the bad and the physi-- -----------------------------------
|
|---|