自分の名前を調べる

                             <p>ソースコード</p>
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/perl

@styles=("../../ipp.css","../test.css");

{
    &amp;printHeader("テスト5");

    print "<div class=test>n";
    if($ENV{'SCRIPT_NAME'}){
        print "この実行ファイルのパス名(?)は「$ENV{'SCRIPT_NAME'}」です。n";
    }else{
        print "・・・どうやら失敗のようです・・・。";
    }
    print "</div>";

    &amp;printFooter;

    exit;
}

sub printHeader{
    print "Content-type: text/htmlnn";
    print "<html lang=ja><head><title>$_[0]</title>n";
    foreach $st (@styles){
        print "<link rel="stylesheet" type="text/css" href="$st">n";
    }
    print "</head><body>n";
    print "<div class=head>n";
    print "<h1>$_[0]</h1><hr>n";
    print "<a href="../../../index.htm">Home</a> / <a href="../../">Perl</a> / <a href="../">TestCGI Index</a>n";
    print "<hr></div>n";
}

sub printFooter{
    print "<div class=foot>n";
    print "<hr>n";
    print "<a href="../../../index.htm">Home</a> / <a href="../../">Perl</a> / <a href="../">TestCGI Index</a>n";
    print "<hr>n";
    open(IN,"../../sig.txt");
    while ($sig=<IN>){print $sig;}
    close(IN);
    print "</div>n";
    print "</body></html>n";
}
                          </div>    	
comments powered by Disqus
Built with Hugo
Theme Stack designed by Jimmy