Thread WWW:Mechanize - Response (13 answers)
Opened by tadeus at 2009-10-15 10:43

Gast Gast
 2009-10-21 14:29
#127208 #127208
ist es besser statt

Code (perl): (dl )
1
2
3
my $mech = WWW::Mechanize->new();
$mech->get($url);
print $mech->content."\n";
Code (perl): (dl )
1
2
3
my $mech = WWW::Mechanize->new();
my $response = $mech->get($url);
print $response->content."\n";


zu schreiben?

View full thread WWW:Mechanize - Response