#!/usr/bin/perl
# wdwrite
# this is the CGI that will take the # applet info and write it to a file

open(OUT, ">> /www/html/survey/Wafers/SurveyLog.txt");
print "content-type: text/plain\n\n";

    
    print OUT "Hello!!";
    print $_;

close (OUT);
exit 0;

