RE: Opening HTML file from PERL

2001-07-05 Thread Moon, John
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

RE: Opening HTML file from PERL

2001-07-05 Thread Curtis Poe
--- "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 =>

RE: Opening HTML file from PERL

2001-07-05 Thread Moon, John
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',

Re: Opening HTML file from PERL

2001-07-05 Thread Mark Bergeron
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 }