Perl Basics In Pictures
Basics
Variables
Numbers
Subroutines
Logic & Loops
Files
Format text output
In the text editor, create a new script with this code:
#!/usr/bin/perl
print "Content-Type: text/html \n\n";
print "<h1 align=center>\n";
print "Welcome to ACME AUTO\n";
print "</h1>\n";
<< BACK
NEXT >>