I have an array....
$arr = array ( "item0"=>"blah", "item1"=>" blah1", "item2"=>" blah2" )
which I would like to pass to a cgi script....
http://www.domain.com/cgi-bin/script.cgi
without using a form and definitely without using "header".
What I need as a result is....
http://secure.domain.com/cgi-bin/script.cgi?item0='blah'&item1='blah1' .....etc.
All suggestions are greatly appreciated, especially if they work.
Thanks in advance.