php-windows | 2003112
Date: 11/27/03
- Next message: Stuart: "Re: [PHP-WIN] Redirection"
- Previous message: Rasmus Lerdorf: "Re: [PHP-WIN] Redirection"
- In reply to: Rasmus Lerdorf: "Re: [PHP-WIN] Redirection"
- Next in thread: Stuart: "Re: [PHP-WIN] Redirection"
- Reply: Stuart: "Re: [PHP-WIN] Redirection"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Rasmus,
Thank you, sorted it out:
In the
<header>
<script language="javascript1.2">
function browserRedirect()
{
var ns4 = document.layers;
var ns6 = document.getElementById && !document.all;
var ie4 = document.all;
if(ns4) URLStr = "http://www.php.net";
else if(ns6) URLStr = "http://www.php.net";
else if(ie4) URLStr = "http://www.php.net";
else URLStr = "http://www.php.net";
location = URLStr;
}
</script>
</header>
In the
<body>
echo "<script language='javascript'>\n";
echo "browserRedirect()\n";
echo "</script>\n";
exit();
</body>
You might have a better cleaner suggestion?
Col
"Rasmus Lerdorf" <rasmus <email protected>> wrote in message
news:Pine.WNT.4.56.0311262114470.3676 <email protected>
> On Thu, 27 Nov 2003, PETCOL wrote:
> > Thanks, but, what if, I've just gone through an set variables and
outputed
> > the contents of those to PHP, just to run up a SQL query, to
authenticate a
> > user. Set another to say they are authenticated, then I want to take
the
> > user to another page? What PHP method would I use in this case.
>
> If you output anything to the user you can no longer do an HTTP redirect
> by the very definition of how things work. You could do a Javascript
> timed redirect, but if you output something for the user to see are you
> really going to suddenly change the page on them without giving them a
> chance to read it? Normally that is considered very bad UI design.
>
> -Rasmus
-- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Stuart: "Re: [PHP-WIN] Redirection"
- Previous message: Rasmus Lerdorf: "Re: [PHP-WIN] Redirection"
- In reply to: Rasmus Lerdorf: "Re: [PHP-WIN] Redirection"
- Next in thread: Stuart: "Re: [PHP-WIN] Redirection"
- Reply: Stuart: "Re: [PHP-WIN] Redirection"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

