in reply to How can I remove HTTP Header

Perhaps the server is ignoring your header because it does not end with CRLFs.

use Socket qw(:crlf); print "Content-Type: text/html$CRLF$CRLF";
may help. If not, then it must be a server configuration.

Update: code tag fixed. sorry!

-nuffin
zz zZ Z Z #!perl

Replies are listed 'Best First'.
Re: Re: How can I remove HTTP Header
by TwitchyEye (Initiate) on Oct 20, 2002 at 01:33 UTC
    Thanks for the suggestion. I tried it but the header is still being printed before my document information.
    Twitchy Eye