I'm pretty new to this but
what are your settings for cookies?
try
header("Location: products_menu.php?" .SID);
should get you there whatever the setting are?
then test with:
session start
if(isset($SESSION['name'])){
$name = $SESSION['name'];
}else{
$name = false;
}
any help?