Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

/dev/null retruns no error

Status
Not open for further replies.

JohnLucania

Programmer
Oct 10, 2005
96
US
What is wrong with this?

/dev/null retruns no error, but I am getting:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.


#! /usr/bin/perl

use warnings;
use strict;

use CGI ( ':standard' );

my $title = '1000 Sequences';
my $seq = param( 'Seq' );

print <<"PrintTag";
print header,
start_html( $title ),
h1( $title ),
<form name="1000Seq" method="post" action="DNAProteinSeq.cgi">
<p>
<input type="radio" name="Seq" value="DNA" checked> 1000 Nucleotide DNA Sequ
ence
<input type="radio" name="Seq" value="Protein"> 1000 Amino Acid Protein Sequ
ence
<input type="submit" name="Submit" value="Submit">
</p>
</form>
end_html;
PrintTag
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top