Help for this page

Select Code to Download


  1. or download this
    sub search
    {
    ...
     return $result;
    }
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
     
     return \@resultset;
    }
    
  3. or download this
    sub auth
    {
    ...
      
      return ($username, $userid, $staff); 
    }
    
  4. or download this
    sub get_session_from_user
    {
    ...
     $class->{session}=$s;     
     return 1;
    }
    
  5. or download this
    package CGI::Session::Driver::sweet;
    
    ...
        return 1;
    }