#!/usr/bin/perl
#
# ------------------------------------------------------------------
# TEST1.PL
# ------------------------------------------------------------------
# Debug program to test Perl
# ------------------------------------------------------------------
print "Content-type: text/html\n\n";
print "<html>";
print "<head>";
print "<title>Survey Self-Hosting Test #1</title>";
print "</head>";
print "<body style=\"font-family: verdana;\">";
print "<h1>Self-Hosting Test #1 Successful</h1>";
print "<p>If you are seeing this message, it means that your web server is configured to correctly execute perl scripts from the browser!</p>";
print "</body>\n</html>\n";
