Help for this page

Select Code to Download


  1. or download this
    Shop::db_connect( \%conf ) ;
    
  2. or download this
    sub db_connect {
        my $conf = shift ;
        print "Print - ", $conf->{'db_database'},
              " - from the Shop package\n";
    }
    
  3. or download this
    #! /usr/bin/perl
    
    ...
        my $conf = shift ;
        $conf->{DB_NAME} = 'DB03' ;
    }