Wow thanks guys much appreciated. I duno what happen during the night with the header thing, my previous url was a valid full url, I just change it to this board url, to test and bang it works
As for the session I already use session_start() and it was not working. No wonder here are the lines I set/gather the value:
$_SESSION['logged'] = true;
if( $_SESSION['logged'] != true ){
code
}else{
code
}
I just notice that a boolean variable will return 1 or 0

so I should do this instead
if( $_SESSION['logged'] != 1 ){
code
}else{
code
}
thank you so much

