in reply to Re: Re: print and redirect
in thread print and redirect

When I want to redirect a user I use the <meta> tag http-equiv=refresh - it's never given me any trouble. I would have your script write your cookie function and when it returns send the browser one of these:
<meta http-equiv="refresh" content="0;url=http://redirect.url.here?anycgi=options&here=too">

-Adam Stanley
Nethosters, Inc.

Replies are listed 'Best First'.
Re: Re: Re: Re: print and redirect
by costas (Scribe) on Apr 10, 2001 at 18:46 UTC
    This works fine,

    However is it better coding practise for me to write the following?

    <html> <head> <meta http-equiv="refresh" content="0;url=http://redirect.url.here?any cgi=options&here=too"> </head> <body></body> </html>

    rather than just the meta refresh line