Results 1 to 4 of 4
  1. #1
    Join Date
    Apr 2012
    Posts
    145
    Plugin Contributions
    0

    Default I want to add 2 var in $_SESSION

    I want to add two vars
    $_SESSION['back_url'] and $_SESSION['current_url'];
    $_SESSION['back_url'] is for storing the history back page
    $_SESSION['current_url'] is for $_SERVER['REQUEST_URL']

  2. #2
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    3,943
    Plugin Contributions
    1

    Default Re: how to add 2 var in $_SESSION

    Quote Originally Posted by linjuming View Post
    I want to add two vars
    $_SESSION['back_url'] and $_SESSION['current_url'];
    Easier than you think.

    $_SESSION['back_url'] = "enter your back URL here" ;
    $_SESSION['current_url'] = "enter your current URL here" ;

    Reading them back is as simple as

    $back_url = $_SESSION['back_url'] ;
    $current_url = $_SESSION['current_url'];

    Having said that though, I suspect that just knowing this isn't going to take care of what it is that you are actually wanting to do.

    What is the problem you are trying to solve?

    Cheers
    Rod
    New support site for the ozpost shipping module now live!

  3. #3
    Join Date
    Apr 2012
    Posts
    145
    Plugin Contributions
    0

    Default Re: how to add 2 var in $_SESSION

    no mater why I want to add two items in $_SESSION;
    can anyone tell me how to add them for no reasion?

  4. #4
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    3,943
    Plugin Contributions
    1

    Default Re: how to add 2 var in $_SESSION

    Quote Originally Posted by linjuming View Post
    can anyone tell me how to add them for no reasion?
    I just did!

    Rod
    New support site for the ozpost shipping module now live!

 

 

Similar Threads

  1. [Done v1.3.8] var declaration in sessions.php
    By nesredep in forum Bug Reports
    Replies: 1
    Last Post: 25 Aug 2007, 05:16 PM
  2. Replies: 1
    Last Post: 8 Nov 2006, 12:41 AM
  3. What is the _GET[sort] var?
    By mgraphic in forum General Questions
    Replies: 2
    Last Post: 31 Aug 2006, 09:03 PM
  4. Session Var's outside store
    By w_lamoreaux in forum General Questions
    Replies: 6
    Last Post: 30 Aug 2006, 06:35 AM

Bookmarks

Posting Permissions

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