in reply to WWW::Mechanize->submit_form to a different action/URL

See WWW::Mechanize, how to set action:

the current_form method gives you the HTML::Form object:
$mech->current_form->action('otherurl.cgi');

Replies are listed 'Best First'.
Re^2: WWW::Mechanize->submit_form to a different action/URL
by monarch (Priest) on Nov 25, 2005 at 03:45 UTC
    Aah thankyou, I had never been aware of the HTML::Form attributes.