in reply to Re: Mechanize and Post?
in thread Mechanize and Post?

Or, since WWW::Mechanize is a subclass of LWP::UserAgent, you could just use LWP::UserAgent's method post() on the mechanize object.

Replies are listed 'Best First'.
Re^3: Mechanize and Post?
by Anonymous Monk on Sep 17, 2007 at 20:02 UTC
    So is it as simple as something like this:
    my $url = 'http://somewebsite?with_form_data'; $mech->post( $url );
    using my current $mech object?