Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Re: Re: Constant Variables

by zakb (Pilgrim)
on Mar 28, 2003 at 11:17 UTC ( [id://246448]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Constant Variables
in thread Constant Variables

I can't see how you can do well what you want; others more experienced may well have a trick to do it. Maybe something along the lines of:

my $x = "variable_name"; my $value = "value"; eval "\$$x = $value"; warn $@ if $@; print $color1;

Which works, but not under use strict.

My suggestion would be to change your approach to use a hash. This would greatly simplify things.

my %config; # use database (DBI) to read key / values into hash # ... $config{color1} = "red"; print $config{color1};

Update: Just re-read your question. You want a way to provide access to the %config hash on each page. You could use a module to do this, exporting the %config hash.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (2)
As of 2024-04-25 21:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found