return.cgi

 


#!/usr/bin/perl

&mime;
&header("This is the page title");

print "<P>This is more of that page wholly created by CGI and Perl!";
$which = &which;
print "<P>You\'re browsing this page with $which";

&footer;

sub header {
	print "<HTML><HEAD><title>";
	print "$_[0]";
	print "</title></HEAD><BODY>"
}

sub footer {
	print "</BODY></HTML>";
}

sub mime {
	print "Content-type: text/html\n\n";
}

sub which {
	$browser = $ENV{'HTTP_USER_AGENT'};
	if ($browser =~ /MSIE/) {
		$browser = "Explorer";
	} elsif ($browser =~/Mozilla/) {
		$browser = "Netscape";
	} else {
		$browser = "something besides Netscape and Explorer";
	}
}