|< 1 2 3 >| | 25 Einträge, 3 Seiten |
[E|B,05.01.2004, 16:11]
Weiß ich nicht... Da muss ich nicht dabei gewesen sein.
1
2
3
4
5
6
$req = new HTTP::Request 'POST','http://f23.parsimony.net/forum52169/wwwforum.cgi';
$req->content_type('application/x-www-form-urlencoded');
$req->content('name=wehurt&email=tehhst@gmx.net&subject=tehhst');
#
$res = $ua->request($req);
print $res->content();
1
2
3
4
5
6
$req = new HTTP::Request 'POST','http://f23.parsimony.net/forum52169/wwwforum.cgi';
$req->content_type('application/x-www-form-urlencoded');
$req->content('name=wehurt');
#
$res = $ua->request($req);
print $res->content();
Quoteund warum du auf die frageThe control names/values are listed in the order they appear in the document. The name is separated from the value by `=' and name/value pairs are separated from each other by `&'.
|< 1 2 3 >| | 25 Einträge, 3 Seiten |