in reply to Re: retrieving in the correct order
in thread retrieving in the correct order

Another thing (just noticed it now) why would you be using map?? map returns an array (filled with x times 1 (return value of print)), which you aren't using at all...

What should be used is for/foreach (or a hash slice ofc).

Replies are listed 'Best First'.
Re^3: retrieving in the correct order
by nedals (Deacon) on Dec 16, 2004 at 22:05 UTC
    The map method was already sitting in my 'test' template. The foreach method is a better option, but I liked your hash slice method even better. ++