Using perl Syntax Highlighting
- use LWP::UserAgent;
- my $nave = LWP::UserAgent->new;
- $nave->timeout(10);
- my $target = "5.135.178.142";
- $re = tomar("http://www.melissadata.com/lookups/iplocation.asp",{'ipaddress='=>$target,'Submit'=>'submit'});
- print $re;
- sub tomar {
- my ( $web, $var ) = @_;
- return $nave->post( $web, [ %{$var} ] )->content;
- }
Coloreado en 0.003 segundos, usando GeSHi 1.0.8.4
En este código estoy haciendo un formulario para que la página me revele unos datos de una IP pero el formulario nunca se completa, o sea, sigue apareciendo normal como si hubiese hecho algo mal.
¿ Cuál es el error ?