Thread Was mache ich falsch! (3 answers)
Opened by Gast at 2004-07-14 21:04

renee
 2004-07-14 21:10
#29307 #29307
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Du musst noch einen Header ausgeben (in dem der MIME-Type der Ausgabe steht), also:
Code: (dl )
1
2
3
4
5
6
7
8
#!/usr/local/bin/perl
#welt.pl

print "Content-type: text/html\n\n"; # Header ausgeben. Wichtig: die zwei \n!

#simple first program
$string = "Hallo Welt!\n";   #Zuweisung eines Wertes
print $string;               #Output
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Was mache ich falsch!