From: Ben Crane <[EMAIL PROTECTED]>
> I have a problem, when I try to redirect to a new
> site...I get the following text in the browser window:
> 
> Status: 302 Moved location: www.yahoo.com
> 
> it doesn't immediately go to yahoo.

Most probably you've already printed the header so this is treated as 
the body of the document (the page).

Make sure there is no
        print "Content-type: text/html\r\n\r\n";
or
        $q = new CGI;
        print $q->header;
above your redirection.

Jenda
=========== [EMAIL PROTECTED] == http://Jenda.Krynicky.cz ==========
There is a reason for living. There must be. I've seen it somewhere.
It's just that in the mess on my table ... and in my brain
I can't find it.
                                        --- me


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to