Hi, I have a user login system website and there has been a problem in carrying the login values across themes. Say, I have a PROFILE theme for user's logged in area and a VDO theme where they can post videos and comments and a GAME theme where they can play mini game. The problem is that all login values such as $_SESSION['user_id'] && $_SESSION['user_level'] channels only to the PROFILE theme from login form but not carrying through the GAME and VDO themes. For clear picture, it bring you to the other two themes from PROFILE theme through links but cannot bring you back. Instead, you'll return to the index page (not logged in) when you want to return to the PROFILE page. How can I achieve this goal using only php session, because I do not use cookies. Thanks in advance Ket
Do you have error reporting turned on? If not, turn it on and see what it says (might have to add an ini_set("display_errors", "on"); to the top of your code). If it does not show any errors, make sure every page that utilizes as $_SESSION variable has 'session_start();' at the top.