Results 1 to 3 of 3

Thread: session variable

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2003
    Location
    Mirpur,Dhaka,Bangladesh
    Posts
    6

    Post session variable

    how can i use session on my PHP page?
    mmrk

  2. #2
    Addicted Member TheGoldenShogun's Avatar
    Join Date
    Mar 2001
    Location
    VA/MD... anywhere around the beltway
    Posts
    236
    add this as a header to your document.

    session_start();

    and then just reference your sessions like this..

    $_SESSION['whatever_name']->$variable = 8;

    $_SESSION['whatever_name']->$var2 = 7;

  3. #3
    Frenzied Member
    Join Date
    Nov 1999
    Posts
    1,337
    Originally posted by TheGoldenShogun
    add this as a header to your document.

    session_start();

    and then just reference your sessions like this..

    $_SESSION['whatever_name']->$variable = 8;

    $_SESSION['whatever_name']->$var2 = 7;
    it would just be

    $_SESSION['whatever_name'] = 8;

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width