Re: LWP Automated Form Submission - Question

Randal L. Schwartz (merlyn@stonehenge.com)
15 Jan 2001 07:53:58 -0800


>>>>> "Chong," == Chong, Arthur <atchong@sbec.com> writes:

Chong,>                 $surl->query_form( $this_url->{param} );  # this does not

You need to de-reference the reference to get the list to pass to ->query_form.

$surl->query_form( @{ $this_url->{param} } );

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!