lois: Programm ausführen

Beitrag lesen

hi,

#!/usr/bin/perl

print "Hallo Welt\n";

glaub eher du hast das Html-Header vergessen:

#!/usr/bin/perl

print "Content-type: text/html\n\n";  # html-header
print qq{
 <html>
 <head>
 </head>
 <body>
 <form action="cgi-bin/xxx.cgi">
 <input type="submit">
 </form>
 </body>
 </html>
};

lg, lois