Alidad Posted December 29, 2009 Share Posted December 29, 2009 hi, i need help with php, let say that there is one tabs said 'login" and once logged in, change automatic text to "log out" in same tab! AM Quote Link to comment Share on other sites More sharing options...
oni-kun Posted December 29, 2009 Share Posted December 29, 2009 hi, i need help with php, let say that there is one tabs said 'login" and once logged in, change automatic text to "log out" in same tab! AM Do you know how to use sessions? You can make it simple like so: if ($_SESSION['logged_in'] == "yes") { echo "<b>Log Out</b>"; } else { echo "<b>Log In</b>"; } So when they're logged in, the text of the tab will be changed. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.