Leser: 1
10 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/perl -w
use strict;
use LWP::Simple;
use DBI;
use CGI qw(:standard escapeHTML);
print header();
my $dbh = DBI->connect('DBI:mysql:db3459xtest:mysql3.test.de','testuser','testpasswort', { PrintError => 1});
print "DB connection established\n";
my $url = 'http://www.testsite.com/Prices.txt';
my $counter=0;
my $inet = get($url);
my $sql;
my $sth;
foreach my $line (split(/\n/, $inet)) {
$counter++;
if ($counter >= 12) {
unless ($line =~ /^\n|=|Foil/) {
if ($line =~ s/Booster/\[BOO\]/) {}
if ($line =~ /([A-Za-z', ]+)\[(\w+)\]/) {
$sql = qq{INSERT INTO Karten_ID (ID,Edition,Kartenname) values (NULL,$2,$1)};
$sth = $dbh->prepare( $sql );
$sth->execute();
}
}
}
}
$sth->finish();
$dbh->disconnect();
1
2
3
$sql = qq{INSERT INTO Karten_ID (ID,Edition,Kartenname) values (NULL,$2,$1)};
$sth = $dbh->prepare( $sql );
$sth->execute();
print "$2 $1<br />";
1 2 3
$sql = qq{INSERT INTO Karten_ID (ID,Edition,Kartenname) values (NULL,?,?)}; $sth = $dbh->prepare( $sql ); $sth->execute($2,$1);
steffi42+2007-11-11 16:57:42--argh sorry das wollte ich nicht, habe über editieren ein wenig am eintrag korrgiert. sollte ihn nicht mehr als einmal posten
10 Einträge, 1 Seite |