in reply to reference question between sub
Each element of @data_epstn of a reference to a hash containing a single element. That doesn't sound useful. I think your problem is much more fundamental. I'm not sure what you are trying to do, so I can't help design your structure.
I do have a useful tidbit to give you: Data::Dumper can help you visual your data structures. For example, to view @data_epstn,
use Data::Dumper; print Dumper \@data_epstn;
To view $results1,
use Data::Dumper; print Dumper $results1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: reference question between sub
by convenientstore (Pilgrim) on Sep 13, 2007 at 22:26 UTC | |
by convenientstore (Pilgrim) on Sep 13, 2007 at 22:42 UTC | |
by ikegami (Patriarch) on Sep 14, 2007 at 01:24 UTC | |
by SuicideJunkie (Vicar) on Sep 14, 2007 at 13:38 UTC |