Are You Wasting Time?

I wasted about 3 years when I first started on the internet.

The first website I built was on free web hosting. Never got more than 2 visitors a day and never made a penny.

Then I tried a web host that I didn't know anything about.
OOPS!
A BIG mistake and another waste of valuable time. My website was down half the time and when I tried to leave they stole my domain name.

I don't want you to make the same mistakes I made. That's why I only recommend top quality, dependable web hosting providers.

I recommend 3 in different price ranges:
Yahoo SB
$11.95 to $39.95

HostPapa
$5.95 to $7.95

CafW Hosting
$4.19 to $10.95

I recommend all 3 for quality and dependability.


CGI Scripts
to Create a Website with Interactive Features

hello_script.pl

This script will print the words Hello World on the computer screen.

#!/usr/bin/perl #This is the shebang line
print "Content-type:text/html\n\n";

print "<html>\n";
print "<head><title>Hello World</title></head>\n";
print "<body>\n";
print "<h1>Hello, world!</h1>\n";
print "</body>\n";
print "</html>\n";



Note: If the scripts don't work:
1...Check the shebang line and make sure it is the path recommended by your web host to access the perl interpreter on your server.
2...Be sure to use the Chmod function on your ftp client or file manager to change the permissions of the script to 755