how to retrive user information using php session?

Discussion in 'PHP' started by praveenvijay, Feb 26, 2011.

  1. #1
    using session retrive the login member information only and display it how?using simple php code.
     
    praveenvijay, Feb 26, 2011 IP
  2. G3n3s!s

    G3n3s!s Active Member

    Messages:
    325
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    80
    #2
    <?php
    session_start();
    $_SESSION['something'] = "whatever";
    echo  $_SESSION['something'];
    ?>
     
    G3n3s!s, Feb 26, 2011 IP