Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gmmastros on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to pass entire hash to another cgi in link? 1

Status
Not open for further replies.

khoont

Programmer
Mar 9, 2001
10
0
0
US
How to pass entire hash to other cgi program as link attached

e.g. like
link =%hash1

above is not useful. i tried that.

also
what would be the parsing technique to get hash value in called program?

Thnaks in advance
khoont
 
You need a serializer to turn the hash into a string representation. Try the SOAP:: modules from CPAN ( Then you take the string representation, pass it in your query string and use the same module to deserialize the string back into a hash.

Good luck,

brendanc@icehouse.net
 
You could also store the hash as a DBI file and retrieve it that way, or store the key/value pairs of the hash as a text file, read it back in and rebuild the hash.
Tracy Dryden
tracy@bydisn.com

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top