Gossamer Forum
Home : General : Perl Programming :

How to get a page with Post method?

Quote Reply
How to get a page with Post method?
Do you know how?
I know that with get is just
Code:
use LWP::Simple;
$url = "sth.com";
$html = get($url);

and with a POST method? how do I do it?