form.pl to HTML.

index -|- end

Generated: Tue Feb 2 17:54:39 2010 from form.pl 2005/06/16 412.

#!/usr/bin/perl
print "Content-type:text/html\n\n";
print <<End_of_Doc;
<html>
<head><title>Sample Form</title></head>
<body>
<form method="POST" action="parse_form.pl">
<pre>
Enter First Name:<input type="text" name="first" size="20">
Enter Last Name:<input type="text" name="last" size="20">
<input type="submit" value="Submit"><input type="reset">
</pre>
</form>
</body>
</html> 
End_of_Doc

index -|- top

checked by tidy  Valid HTML 4.01 Transitional