--- Octavian Rasnita <[EMAIL PROTECTED]> wrote:
> Hi all,
> 
> I tried the following line to open another location, but it doesn't work.
> 
> print $screen -> redirect(-uri=>'http://localhost/index.html');
> 
> It doesn't redirect to another location. It just prints the following:
> 
> Status: 302 Moved Location: http://localhost/index.html 

Double-check your code.  This problem occurs if you are already printing a header 
somewhere.  I
see this happen frequently in code that prints a header right away and then, somewhere 
in the bulk
of the program, someone tries to do a redirect.  The solution is usually to not print 
the header
until you need it.

Cheers,
Curtis "Ovid" Poe

=====
"Ovid" on http://www.perlmonks.org/
Someone asked me how to count to 10 in Perl:
push@A,$_ for reverse q.e...q.n.;for(@A){$_=unpack(q|c|,$_);@a=split//;
shift@a;shift@a if $a[$[]eq$[;$_=join q||,@a};print $_,$/for reverse @A

__________________________________________________
Do You Yahoo!?
Yahoo! Sports - live college hoops coverage
http://sports.yahoo.com/

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

Reply via email to