in reply to Re: Re: Internal server error
in thread Internal server error

'Premature end of script headers' usually means you didn't send the correct headers to display the output in your web browser. Make sure before you print anything out that you have a line that looks like this:

print "Content-type: text/html\n\n";

Alternatively if you are using the CGI module you can use it to print your header:

print $cgi->header(); # defaults to text/html

Hope that helps
Chris

Lobster Aliens Are attacking the world!