I hosted my website on Godaddy. I encountered by the past the problem of retrieving my session after a php redirection by using exit() as following:
<?php
$_SESSION['mysession']='session_name';
header('Location: http://www.mywebsite.com/?blabla=blubb');
exit();
Ant it works great but when I export my code on Godaddy server, it doesn't work out there, I can't retrieve my session anymore, and I don't know why. Please help me.