csuresh01 has asked for the wisdom of the Perl Monks concerning the following question:
$postStr ="ettablenr=2&etcell2x1=Task&etcell2x2=1&etcell2x3=2&etcell24 +=3&etcell2x5=High&etrows=2&etsave=Save table"; $ua = LWP::UserAgent->new; my $req = HTTP::Request->new(POST =>$PATH . @TaskName[1]. '#edittable2 +'); $req->content_type('application/x-www-form-urlencoded'); $req->content_type($postStr); my $res = $ua->request($req); print $res->as_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: LWP : Post Problem
by borisz (Canon) on Aug 30, 2004 at 10:25 UTC | |
|
Re: LWP : Post Problem
by Anonymous Monk on Aug 31, 2004 at 15:39 UTC | |
by borisz (Canon) on Sep 01, 2004 at 10:00 UTC |