Leser: 1
|< 1 2 >| | 13 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
#!c:/perl/bin/perl.exe
use strict;
use warnings;
#HTTP-Header nicht vergessen!
print "Content-type: text/plain\n\n";
print "Hallo Welt";
exit;
Dareios,vorhinund wollte es über eine htm-Seite aufrufen
Dareios,vorhinund wollte es über eine htm-Seite aufrufen
Quote#
# Apache parses all CGI scripts for the shebang line by default.
# This comment line, the first line of the script, consists of the symbols
# pound (#) and exclamation (!) followed by the path of the program that
# can execute this specific script. For a perl script, with perl.exe in
# the C:\Program Files\Perl directory, the shebang line should be:
#!c:/wampp1/perl/bin/perl
|< 1 2 >| | 13 Einträge, 2 Seiten |