Thanks Curtis ...
-Original Message-
From: Curtis Poe [mailto:[EMAIL PROTECTED]]
Sent: July 05, 2001 15:27
To: CGI
Subject: RE: Opening HTML file from PERL
--- "Moon, John" <[EMAIL PROTECTED]> wrote:
> Don't know if this will help but I am doing something simila
--- "Moon, John" <[EMAIL PROTECTED]> wrote:
> Don't know if this will help but I am doing something similar
>
> ...
> use strict;
> no strict "refs";
>
> ...
> my %DISPLAY = (
> # *form value* => *sub name*
>10 => 'Personnel',
>20 => 'DataCom',
>80 =>
Don't know if this will help but I am doing something similar
...
use strict;
no strict "refs";
...
my %DISPLAY = (
# *form value* => *sub name*
10 => 'Personnel',
20 => 'DataCom',
80 => 'Unisys',
30 => 'IBM',
100 => 'Unix',
If you paste a little code into your email we may be able to give you better advice.
The most common way though would be to use a "here" document inside of the script like
so:
if (your_condition eq 'T'){
print <
Your Page
etc... other HTML here
EOF
}