Thread use LWP::Simple;: Problem (4 answers)
Opened by pktm at 2003-09-30 20:07

format_c
 2003-09-30 20:36
#5140 #5140
User since
2003-08-04
1706 Artikel
HausmeisterIn
[Homepage] [default_avatar]
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.
Code: (dl )
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

View full thread use LWP::Simple;: Problem