Thread Abfrage und Auswertung von einer Webseite
(4 answers)
Opened by heidieswi at 2007-10-04 18:29
Danke für die rasche Antwort.
Ich hab das Skript mal abgetippt, bekomme aber eine Fehlermeldung: [root@mylinux cgi-bin]# ./htmltest.pl syntax error at ./htmltest.pl line 7, near "my " Execution of ./htmltest.pl aborted due to compilation errors. Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 #!/usr/bin/perl -w use LWP::Simple; my $cUrl = 'http://chipcheck.mikatiming.de/?chip='; my $chip = "XYZ123C" my $content = get( $cUrl . $chip ); print $content; # end of file So sieht die Antwort auf der Web-Seite aus. Wenn ich die Info in $content habe, ist das Problem gelöst. Valid: true Chip: DW3Z3B5 Code: 0 Message: OK Valid: false Chip: XYZ123C Code: 1 Message: 1. Zeichen fehlerhaft! H.-D. |