not displaying username come back from another page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • curi444
    New Member
    • Jan 2010
    • 18

    not displaying username come back from another page

    name displayed on login page using session shows a notice the username is not defined when come back from another pages.how to solve this
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    Check that the variable exists before you work with it.

    Code:
    if (isset($_SESSION['username'])) {
        printf("Hello, %s.", $_SESSION['username']);
    }

    Comment

    Working...