Help for this page

Select Code to Download


  1. or download this
    our %services = {
        '1' => {
    ...
        }
        '2' => {...}
    };
    
  2. or download this
    my $service = $services{ $user_request };
    if ( not $service->{ host }{ $current_host } ) {
    ...
    else {
        # real work here
    }