|< 1 2 >| | 15 Einträge, 2 Seiten |
1 2 3 4 5 6 7 8 9 10
print << EOF; Content-Type: html/test\n\n <html> <head> </head> <body> <h1>Test Seite</h1> </body> </html> EOF
1
2
3
4
5
6
7
print "Content-Type: html/test\n\n<html>
<head>
</head>
<body>
<h1>Test Seite</h1>
</body>
</html>"
QuoteUnd versuch das nächste Mal das passende Forum zu finden, das schaut mir mehr nach ner CGI-Frage aus
1
2
3
4
use CGI ();
my $cgi = CGI->new();
print $cgi->header(-type => 'text/html'), $cgi->start_html("testseite");
...
1
2
3
4
5
6
7
8
9
#! /usr/bin/perl
use warnings;
use strict;
use CGI ();
use CGI::Carp qw(fatalsToBrowser warningsToBrowser); # in Produktion auskommentieren
my $cgi = CGI->new();
print $cgi->header(-type => 'image/gif');
...
|< 1 2 >| | 15 Einträge, 2 Seiten |