Help for this page

Select Code to Download


  1. or download this
    # config file
    sub initConfig {
        $foo = "$user - bar";
        # ... whatever...
    }
    
  2. or download this
    # program
    require 'configuration_file';
    ...
    # now $user exists, although you'd wanna check it for validity
    &initConfig();
    # ... continue processing...