in reply to Perl/CGI - passing AoH from one page to another
The easiest solution would probably involve storing it in a session variable, probably with CGI::Session or Apache::Session.
Another option would be to serialize the data and pass it via the query string (which could well run into problems with the amount of data you have) or by storing it in an input and submitting it as POST data (if the action you are performing is suitable for a POST request).
|
|---|