Help for this page

Select Code to Download


  1. or download this
    require "/home/path/to/ma/files/$_fileName.conf";
    
  2. or download this
    use strict;
    my ($sth, $_mad);
    ...
    
    my $_madFile = $_mad->{name};
    use MA::$_madFile;
    
  3. or download this
    my $_madFile = 'MA::' . $_mad->{name};
    use $_madFile;
    # AND I've tried it this way:
    use "$_madFile";
    
  4. or download this
    $_cardCharged = MA::$_madFile::chargeCard();