home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip Hitware 7
/
Chip_Hitware_Vol_07.iso
/
chiphit7
/
online
/
95htmlno
/
examples
/
hellocgi.pl
< prev
next >
Wrap
Perl Script
|
1996-05-30
|
719b
|
28 lines
#!/usr/bin/perl
#
# Generated by HTML Notepad V2.0 1996
# To be found at www.cranial.com/software/htmlnote
# Go on admit it, you are impressed!
#subroutine for printing out HTML
sub html_out {
print "<html>\n";
print "<head>\n";
print "<meta http-equiv="generator" content="HTML Notepad v2.0">\n";
print "<meta http-equiv="author" content="Adam Fraser, Cranial Publishing">\n";
print "<link rev="made" href="mailto:adam@cranial.demon.co.uk">\n";
print "<title>Hello World</title>\n";
print "</head>\n";
print "<body>\n";
print "<p>Hello World</p>\n";
print "</body>\n";
print "</html>\n";
print "\n";
}
#main sequence
print "Content-type : text/html\n\n";
&html_out;
#end script