[snip]
I have this line at the end of 1 big php block...
header('Location: mypage.php?id=' .
$_SESSION['id'].'&cat='.$_SESSION['cat']);It works fine on my dev. Testing server but does not forward on the actual website.... Any way to fix this? [/snip] The first thing that you will want to do is echo $_SESSION['id']; echo $_SESSION['cat']; To see if they contain anything -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

