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