Kann ich nicht nachvollziehen. Nur mit Parameterübergaben an ein Script wirst du mit LWP::Simple nicht sehr weit kommen. Halte dich da lieber an LWP::UserAgent.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
format_c@linux:~/perl_samples> perl
use strict;
use LWP::Simple;
my $lnr = '2689';
my $k1='52';
my $k2='48';
my $getURL=qq~http://www.schlachtplatz.de/cgi-bin/spiel/karte.pl?lnr=$lnr&k1=$k1&k2=$k2~;
# ---------------------------------------------------
# LOGIK
# ---------------------------------------------------
my $file = get( $getURL );
print "Content-type: text/html\n\n";
print $file;
Content-type: text/html
format_c@linux:~/perl_samples>
Gruß Alex