print header;
print "<strong>Version </strong>$CGI::VERSION<p>";
print <<EOF;
<H1>File Diff Example</H1>
Enter two files. When you press "submit" their diff will be
produced.
EOF
;
# Start a multipart form.
print start_multipart_form;
print endform;
# Process the form if there is a file name entered
$|=1; # for buffering
print "<HR>\n";
print "<PRE>\n";
print "</PRE>\n";
}
print <<EOF;
<HR>
<A HREF="../cgi_docs.html">CGI documentation</A>
<HR>
<ADDRESS>
<A HREF="/~lstein">Lincoln D. Stein</A>
</ADDRESS><BR>
Last modified 17 July 1996
EOF
;
print end_html;
sub sanitize {
my $name = shift;
exit 0;
}
return $safe;
}