
thodi
stranger
Feb 13, 2003, 2:37 AM
Post #7 of 10
(834 views)
|
|
Re: [Always IN Chaos] Pwease help dis nOOb!
[In reply to]
|
Can't Post
|
|
ok how about this .. how do I , In perl, send to a url what that html form generates... so it sends the Username + password and submits it. in that instance. Something like this?
use strict; use warnings; use LWP::UserAgent; my $ua = LWP::UserAgent->new(); my $response = $ua->post('http://form-url', { Pasword => 'pass', Username => 'user' }); Edit: Sorry, I used put instaed of post.
(This post was edited by thodi on Feb 13, 2003, 3:08 AM)
|