Thread Anfänger benötigt hilfe: warum funktioniert bei mir perl nicht (14 answers)
Opened by Gast at 2006-08-07 16:45

Gast Gast
 2006-08-07 16:45
#8502 #8502
Hallo Perl Community

ich möchte mich mal etwas in perl einarbeiten.

Installiert habe ich XAMPP (unerstützt Perl)
uch habe ein einfaches script

Code: (dl )
1
2
3
4
5
6
7
8
#!../perl/bin

use strict;

print "Content-type: text/html\n\n";
print "<html><head><title>Test-Ausgabe</title></head><body>\n";
print "<h1>Hurra, es klappt!</h1>\n";
print "</body></html>\n";


das script liegt unter dem namen test.pl im cgi-bin ordner.

nun noch einfaches html was das script aufruft.
[quote]<html>
<head>
<title></title>
</head>
<body>
<a href="../cgi-bin/test.pl">klick</a>
</body>
</html>

das file ligt im htdocs verzeichnis

Als ausgabe bekomme ich wenn ich den link anklicke

Quote
#!../perl/bin use strict; print "\n"; print "
Hurra, es klappt!
\n"; print "\n";


kann mir jemand sagen was ich falsch mache?

bin so langsam am verzweifeln...

gruß

View full thread Anfänger benötigt hilfe: warum funktioniert bei mir perl nicht