package MyConstants; require Exporter; @ISA = qw (Exporter); @EXPORT_OK = qw ( LOGIN PASS IP DB_NAME); use constant LOGIN => 'name'; use constant PASS => 'pwd'; use constant IP => '190.xxx.xxx.xx'; use constant DB_NAME => 'mydbname'; 1;