Help for this page

Select Code to Download


  1. or download this
    #Passing scalar ref
    sub make_session {
    ...
        $$s=$session_hash;
    }
    &make_session($user,$dept,\$sid);
    
  2. or download this
    #Returning hash ref
    sub make_session {
    ...
        return $session_hash;
    }
    $sid = &make_session($user,$dept);