in reply to At wit's end with LWP/https
use HTTP::Request::Common; $request = POST $site, \%choices;
Also, all your earlier messing around with $JSrequest gets nullified when you redefine it completely here:
$JSRequest = POST "$site", %choices;
Finally, I can't see the web page you are submitting to, but I would be very surprised if this works:
search => 'javascript:verify(document.forms[0])');
That would mean the script has to take the search variable and evaluate it, which seems unlikely. Normally scripts which take post variables are on the server - they may produce javascript output, but they don't use javascript themselves. But you know what you're doing.
dave hj~
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: At wit's end with LWP/https
by Shikko (Initiate) on Mar 15, 2001 at 01:15 UTC |