in reply to Re^3: CURL Alternative.
in thread CURL Alternative.

A bit more higher level than HTTP::Request::Common is LWP::UserAgent, which provides a post method.
$ua->post( $url, \%form )
or
$ua->post( $url, $field_name => $value, ... )

It's still not as high level and convenient as LWP::simple, but it's probably as close as you will get.