Help for this page

Select Code to Download


  1. or download this
    my %required;
    $required{path} = ($ENV{HTTP_HOST} eq 'www.shrum.net') ? 
                      'g:/websites/shrum.net/' : 'd:/users/http/html/';
    
  2. or download this
    my %required;
    if ($ENV{HTTP_HOST} eq 'www.shrum.net') { # We now know which 
    ...
        $required{path}         = 'd:/users/http/html/';
        $required{someotherkey} = 'some different string';
    }