Code Comments
Programming Forum and web based access to our favorite programming groups.Hi All!
While the following works just fine with Firefox, it doesn't with Internet
Explorer:
if ($action == "view") {
$pass_id = $row[$this->IDfield];
if (isset($_GET["id"])){
$passw= $_GET["id"];
$this->passw = $passw;
}
$url = "appdetail.php?id=".$passw;
$delay = "0";
echo '<meta http-equiv="refresh"
content="'.$delay.';url='.$url.'">';
}
Why?
And more importantly, how to fix it ?
Thank you !
Post Follow-up to this messageMichel Angelo wrote:
> Hi All!
>
> While the following works just fine with Firefox, it doesn't with Internet
> Explorer:
> if ($action == "view") {
> $pass_id = $row[$this->IDfield];
> if (isset($_GET["id"])){
> $passw= $_GET["id"];
> $this->passw = $passw;
> }
> $url = "appdetail.php?id=".$passw;
> $delay = "0";
> echo '<meta http-equiv="refresh"
> content="'.$delay.';url='.$url.'">';
> }
>
> Why?
> And more importantly, how to fix it ?
>
> Thank you !
>
>
I think the url has to be an absolute reference not a relative one.
-david-
Post Follow-up to this messageRelative or absolute, none is working under internet explorer, but still works fine under Firefox. Thank you for the suggestion! "David Haynes" <david.haynes2@sympatico.ca> wrote in message news:fLuVf.20815$uL.3307@fe73.usenetserver.com... > Michel Angelo wrote: > > I think the url has to be an absolute reference not a relative one. > > -david-
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.