Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Help needed understanding global variables in Perl

by Anonymous Monk
on Mar 13, 2008 at 19:40 UTC ( [id://674060]=note: print w/replies, xml ) Need Help??


in reply to Help needed understanding global variables in Perl

I have several cgi scripts that use the same config.pl file. My problem is that I had trouble referencing the %config hash. If I move the 'our %CONFIG = ();' to the config.pl file I get errors, but if I declare it in main:: all is OK. Since config.pl doesn't have a package identifier, I was under the impression that it became part of main:: #!/usr/bin/perl -- use strict; our %CONFIG = (); # need to declare the config vars, fails if moved to config.pl require "config.pl" ; # set the config variables require "net.pl"; # common routines for link exhange require "common.pm"; # common routines for all my cgi's
  • Comment on Re: Help needed understanding global variables in Perl

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://674060]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-25 17:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found