Online Learning Applications for Technical English


Home
Syllabus
Assignments

Instructor



Producing Homepages

If you forget to print the MIME type header for a homepage in this example, you will may get an error message from the server.

Filename: hello_without_MIME_type_header.cgi
#!/usr/bin/perl

#------------------------------
# [10/30/2002] - File created to see what happens 
#   if we forget to print the MIME type header.
#------------------------------

#------------------------------------------------
# Step 1:  Print MIME type header for homepages.
#------------------------------------------------
#  print "Content-type:  text/html\n\n";

#------------------------------------------------
# Step 2:  Print HTML contents.
#------------------------------------------------
  print "<HTML>\n";
  print "<HEAD>\n";
  print "</HEAD>\n";
  print "<BODY>\n";
  print "Hello, world!\n";
  print "</BODY>\n";
  print "</HTML>\n";

  exit;
[ View result ]

[ Back ]