Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

At the top of each page of my website I have a Login button. However, I would like to make the button change to say Logout if a viewer is already logged into the site, but switch back Login if the viewer is logged out. Is there a line of code that would easily do this? Any help would be greatly appreciated. My HTML and CSS is ok, but that is about the extent of my knowledge right now.

Additional Details: The login button sends you to another page where you can login. I am hoping to change the name and link based off of whether or not the user is logged in. The code for the link/button at the top of the page is:

<p id="header_right" align="right"><b><a href="http://---------------.org/login.php">Login</a></b></p>

share|improve this question
What are you using for login/logout, where is that code ? – Sheikh Heera Feb 13 '12 at 7:19
it depends on your mechanism of keeping track of who is logged in and who's not. – Elzo Valugi Feb 13 '12 at 7:27
@Heera, I apologize for being so vague. The login button sends you to another page where you can login. I am hoping to change the name and link based off of whether or not the user is logged in. ElzoValugi, I am very new to this sort of thing. I keep my user information for logging in in a databse, but I'm not sure if that is what you are asking. The code for the link/button at the top of the page is: <p id="header_right" align="right"><b><a href="http://---------------.org/login.php">Login</a></b></p> – Justin K Feb 13 '12 at 8:20
It's Ok, you don't need to apologize for that, I understand. I'm also new here. – Sheikh Heera Feb 13 '12 at 8:26

closed as not a real question by casperOne Feb 14 '12 at 14:41

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

after login store username value in $_SESSION['user'] varibale

session_start();


if(!$_SESSION['user'])
        {
            echo "<input type='submit' name='login' value='login'/>"
        }
        else
        {
            echo"<span><b>Welcome <?php $_SESSION['user']; ?></b></span>";
            echo "<input type='submit' name='logout' value='logout'/>";
        }
share|improve this answer

You have to use a session to check whether the user is logged in or not. If session exists show "log-out" other wise show "Login". make sure to unset the session when user log-out.

<?php
session_start();
if(isset($_SESSION["usr"]))
{
    // Show logout button
}
else
{
    // show the login button
}
?>
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.