in reply to Passing variables to another script (theory)
Assuming your configuration information is stored in admin.cgi in a hash %config, it's as easy as:
straight from the docs of Storable.use Storable; store \%config, 'config.file'; # for reading back $hashref = retrieve('file');
-- Hofmator
|
|---|