Hi, I have some problems about sessions and i don't know how to resolve it, I just want when this variavel are update all site have de information and other thing is when I use window.open(...) , in this new windows I don't have access to this values...🙁 i don't know what i'm doing wrong...
this is the code i have in index.php
<?PHP
session_start();
$SESSION["login_status"]=0;
$SESSION["login_user"]="";
?>
and in the rest of pages i do some updates to this values.... but they are not available in all the page (after do the correct login)....🙁
Can anyone explain me this things
thanks
Nelson MB