I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2005-11-11 13:57:22-08 by abeltje in response to 1296
Re: POST in IE::Mechanize, can it be done?
If the form specifies METHOD=POST, the submit_form() method will send a post request. Something like this:
$ie->get( 'http://www.website.com/inventory' ); $ie->submit_form( form_number => 1, fields => { car => 'honda', model => 'accord', color => 'blue' }, );
Direct Responses: Write a response