Thread Save.pl Speichert nicht mehr ab !! (15 answers)
Opened by Gast at 2004-05-03 16:52

Gast Gast
 2004-05-03 16:52
#2328 #2328
Hallo !

Ich habe eine Frage, meine Save.pl Script speichert Daten in eine Data.txt Datei ab. Dies tat sie, jetzt nicht ? Kann sich jemand mein Script anschauen ?

Script:

Code: (dl )
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
38
39
#!/usr/bin/perl

read(STDIN, $Daten, $ENV{'CONTENT_LENGTH'});

open(COMMENTS, ">>data.txt");   # HTML-Datei zum Schreiben öffnen

$Daten =~ s/%3E/\>\;/g;
$Daten =~ s/%3C/\<\;/g;
$Daten =~ tr/&=+/| -/;
$Daten =~ s/Name/\ \;/g;
$Daten =~ s/Firstname/\ \;/g;
$Daten =~ s/Street/\ \;/g;
$Daten =~ s/Nr/\ \;/g;
$Daten =~ s/%2F/\/\;/g;
$Daten =~ s/Code/\ \;/g;
$Daten =~ s/City/\ \;/g;
$Daten =~ s/Tel/\ \;/g;
$Daten =~ s/Email/\ \;/g;
$Daten =~ tr/;/ /;

$Daten =~ s/[ ]| //gi;
#$Daten =~ s/+/\-\;/g;

print COMMENTS "$Daten\n";

close(COMMENTS);

print "Content-type: text/html\n\n";
print "<html><head><TITLE>visualVIBES bioNET</TITLE></head>\n";
print "<body bgColor=#dcd299>\n";
print "<i style=color:#FF6633 style=font-family:Arial style=font-weight:bold style=font-size:50pt

style=filter:Glow(color=#FF5522, strength=10)>your entry has been saved </a></i>";
print "<p><hr noshade size=1><p>";
print "<i style=color:#FF6633 style=font-family:Arial style=font-size:50pt><a

href=\"[URL=http://localhost/index.html\>back</a></i>;]http://localhost/index.h....";[/URL]
print "</body>\n";
print "</html>\n";



Bearbeitet von Crian: CODE-Tags hinzugefĆ¼gt.\n\n

<!--EDIT|Crian|1083593732-->

View full thread Save.pl Speichert nicht mehr ab !!