I have two page header.htm and header.php This is header.htm <body> <p><a href="header.php?xp=1">Link Google</a></p> <p><a href="header.php?xp=2">Link Yahoo</a></p> <p><a href="header.php?xp=3">Link Hotmail </a></p> <p><a href="header.php?xp=4">Link Php.net</a></p> </body> This is header.php <? if ($xp==1) header("location : www.google.com") ; elseif ($xp==2) header("location : www.yahoo.com") ; elseif ($xp==3) header("location : www.hotmail.com") ; elseif ($xp==4) header("location : www.php.net") ; ?> <html> <body></body> </html> When I run on my computer , IIS and windows xp , they run well , but when I upload them on UNIX server , they run nothing , they don't redirect , I ask admin why he anwsers he doesn't know , anyone can help me , thank you . -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php