Help for this page

Select Code to Download


  1. or download this
    $SESSION->{Foo} = { Value => 94, name => 'Frank' }
    
  2. or download this
    $SESSION->{value} = 94;
    $SESSION->{name} = 'Frank';
    
  3. or download this
    # Set a global "login" variable
    $r->set_global( Login => 1 );
    
    # Do some other stuff, then let the Bar function do things.
    $r->private_variable( Package => "Foo", Function => "Bar", Value => "S
    +ome Value" );