Posted by Jay Blanchard on 12/06/05 22:23
[snip]
// Causes only Safiri to bomb
header("location:
".$_SERVER['PHP_SELF']."?action=listentries&categoryid=".$id."&page=".$pagei
d);
exit;
[/snip]
Since PHP is processed server-side it has to be the URL causing Safari to
bail. Have you echo'd out the URL to see what it is composed of?
$foo =
$_SERVER['PHP_SELF']."?action=listentries&categoryid=".$id."&page=".$pageid;
echo $foo;
Navigation:
[Reply to this message]
|