Re: Global Variables

2001-11-02 Thread Thimal Jayasooriya
Jason, Some things you can try... (a) use a style sheet.. (.css file) and use that to set font and background color properties. This is obviously a non-Perl solution. (b) put these variables into a configuration file, and have each of your files read that configuration file.. config file would

Re: Global Variables

2001-11-02 Thread Maxim Berlin
Hello jason, Friday, November 02, 2001, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: jwc> Need some help. jwc> I think that I need to be using global variables. Unless Someone has a> jwc> better solution. jwc> What I am trying to do is. I want to set a variable for such things as jw

Re: Global Variables

2001-11-02 Thread Roger C Haslock
1) You can use Constants:- use constant BUFFER_SIZE=> 4096; use constant ONE_YEAR => 365.2425 * 24 * 60 * 60; use constant PI => 4 * atan2 1, 1; use constant DEBUGGING => 0; use constant ORACLE => '[EMAIL PROTECTED]'; use constant USERNAME

Re: Global Variables

2001-11-01 Thread Eric Pretorious
On Thu, 1 Nov 2001 [EMAIL PROTECTED] wrote: > Need some help. > > I think that I need to be using global variables. Unless Someone has a> > better solution. > > What I am trying to do is. I want to set a variable for such things as > > FONT_COLOR=00 > BACKGROUND_COLOR=55 >