in reply to Re: How to send queries to a website
in thread How to send queries to a website
use WWW::Mechanize; $url = '.........'; $mech = WWW::Mechanize->new(); $mech->get( $url ); $result = $mech->submit_form ( form_number => 0, fields => { context => 'Hello world', } );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to send queries to a website
by kennethk (Abbot) on Sep 10, 2010 at 18:22 UTC |