I\'ve got a script that sets some session values before redirecting to / using header().
/
header()
I\'ve read many posts about the $_SESSION
$_SESSION
After the Header redirect you need to exit the PHP script:
header("Location: /"); exit();