Thread Installation Perl?? (39 answers)
Opened by drooper at 2006-04-10 14:43

GwenDragon
 2006-04-11 13:16
#47835 #47835
User since
2005-01-17
14848 Artikel
Admin1
[Homepage]
user image
Speichere mal doch mal folgendes als Datei test.pl in /cgi-bin/ ab:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!C:/web/Perl/bin/perl

$| = 1;

use strict;
use warnings;

use CGI qw( :all );

print header(), # gibt Header, MIME-Type aus

    start_html(),
    
    h1("Test des Skriptes mit Perl"),
    p("Test", b("fett")),
    p("Aha, ey geht doch!"),
    
    end_html();
    
1;

und rufe http://localhost/cgi-bin/test.pl auf.

Was wird dann angezeigt?\n\n

<!--EDIT|GwenDragon|1144748442-->

View full thread Installation Perl??