package XYConfig; use strict; use vars qw($htdir $cgidir @ISA @EXPORT_OK); use Exporter; @ISA = qw(Exporter); @EXPORT_OK = qw($htdir $cgidir); $htdir="/srv/www/htdocs"; $cgidir="/srv/www/cgi-bin"; 1;