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
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
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
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
>