7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use CGI::Carp qw(fatalsToBrowser);
use strict;
$conttype = "Content-type: text/html\n\n";
&info;
sub info{
print $conttype;
print "<html><body>\n";
print "Hello World ohne Fehler;-)\n";
print "</body></html>\n";
}
1
2
3
Software error:
Execution of /home/sites/site27/web/cgi-bin/test/x.cgi aborted due to compilation errors.
For help, please send mail to the webmaster (admin), giving this error message and the time and date of the error.
use strict;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use CGI::Carp qw(fatalsToBrowser);
use strict;
my $conttype = "Content-type: text/html\n\n";
&info;
sub info{
print $conttype;
print "<html><body>\n";
print "Hello World ohne Fehler;-)\n";
print "</body></html>\n";
}
7 Einträge, 1 Seite |