[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; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

