in reply to Re^2: Post parameters with www::mechanize
in thread Post parameters with www::mechanize

If i understand you, yuou want to build a similar thing yourself? why not look at the code, you'll see anything you need there.
e.g.: www mechanize uses these modules, to support it's functions:
use HTTP::Request 1.30; use LWP::UserAgent 2.003; use HTML::Form 1.00; use HTML::TokeParser; use URI::URL;
update:
I do think it uses libwww-perl for posting, e.g.:
use HTTP::Request::Common; my $ua = LWP::UserAgent->new; $ua->request(POST 'http://somewhere/foo', [foo => bar, bar => foo]);

"We all agree on the necessity of compromise. We just can't agree on when it's necessary to compromise." - Larry Wall.