How to know if non-cookie user is logged in?
I have modified my board so that there is a link in every users control panel to edit a custom setup page of theirs. The edit page for this is not part of the board (obviously) and the only way I am able to tell if a user is logged in is by checking $_COOKIE. If the user is not using cookies, the $_SESSION is still empty (yes, even after session_start). What method is being used to keep them logged in between pages when not using cookies?
How can I check if a user is logged in if I don't find $_COOKIE info?
|