--- Peter Cline <[EMAIL PROTECTED]> wrote:

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

I'm not sure if the above line is the issue or not.  How the browser or Web server 
deals with that
could be the issue (though it sounds like your problem is on the server side).  A 
proper content
type header is:

Content-Type: text/html

...or...

Content-Type: text/html; charset=ISO-8859-1

Note that there is no space before the colon and the 't' in 'Type' is capitalized 
(though the
capitalization shouldn't matter here).

This is an excellent reason to use CGI.pm:  it's tough to mess up the headers:

#!/usr/bin/perl -wT
use strict;
use CGI qw/:standard/;

print header;

Cheers,
Curtis Poe

=====
Senior Programmer
Onsite! Technology (http://www.onsitetech.com/)
"Ovid" on http://www.perlmonks.org/

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

Reply via email to