RE: What am I doing wrong

1999-12-29 Thread Stas Bekman
re of mod_perl environment and does lots of magic about it, cgi-lib.pl is not. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 24 December 1999 17:38 > To: MOORHOUSE, John NW Group Risk > Cc: '[EMAIL PROTECTED]' > Subje

Re: What am I doing wrong

1999-12-29 Thread Craig Shaver
-Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 24 December 1999 17:38 > To: MOORHOUSE, John NW Group Risk > Cc: '[EMAIL PROTECTED]' > Subject: Re: What am I doing wrong > > >>>>> "MOORHOUSE," == MOORHOUSE

RE: What am I doing wrong

1999-12-29 Thread MOORHOUSE, John NW Group Risk
sk Cc: '[EMAIL PROTECTED]' Subject: Re: What am I doing wrong >>>>> "MOORHOUSE," == MOORHOUSE, John NW Group Risk <[EMAIL PROTECTED]> writes: MOORHOUSE,> Is there any way of initialling a *main::input in one go MOORHOUSE,> i.e *main::input=(); does

Re: What am I doing wrong

1999-12-24 Thread Randal L. Schwartz
> "MOORHOUSE," == MOORHOUSE, John NW Group Risk ><[EMAIL PROTECTED]> writes: MOORHOUSE,> Is there any way of initialling a *main::input in one go MOORHOUSE,> i.e *main::input=(); doesn't work This is already heading down the dangerous path. Why are you using a symbol-table variable if

RE: What am I doing wrong

1999-12-24 Thread MOORHOUSE, John NW Group Risk
s Bekman [mailto:[EMAIL PROTECTED]] Sent: 24 December 1999 10:14 To: MOORHOUSE, John NW Group Risk Cc: '[EMAIL PROTECTED]' Subject: Re: What am I doing wrong > my startup script has the line > use Html::App; > > my main script calls this > use strict; > use Html::App;

Re: What am I doing wrong

1999-12-24 Thread Stas Bekman
> my startup script has the line > use Html::App; > > my main script calls this > use strict; > use Html::App; > use DBI; > > my ($cnt,$stts)=(); > $main::html=(); > $main::html=Html::App->new; two "style" mistakes (harmless in this case): * $main::html is a scalar, you shouldn't assign list

What am I doing wrong

1999-12-24 Thread MOORHOUSE, John NW Group Risk
my startup script has the line use Html::App; my main script calls this use strict; use Html::App; use DBI; my ($cnt,$stts)=(); $main::html=(); $main::html=Html::App->new; Html::App contains package Html::App; sub new { my $class = shift; my $self = {}; print STDERR "$class, $s