Thanks! That worked.
On Fri, 31 Oct 2003 11:43:52 -0700
"Wiggins d Anconia" <[EMAIL PROTECTED]> wrote:
>
>
> >
> >
> > > Hi,
> > > I am trying to do this:
> > >
> > > for( $i = 0; $i < 5; $i++) {
> > > $qty[$i] = $q->param('qty$i');
> > > }
> > > I could say $q->qty0;
> > >
Hi,
I am trying to do this:
for( $i = 0; $i < 5; $i++) {
$qty[$i] = $q->param('qty$i');
}
I could say $q->qty0;
$q->qty1;
|
|
|
$q->qty4;
and be done with it. That works. But I would rather do it from
rkson" <[EMAIL PROTECTED]> wrote:
> radhika sambamurti <[EMAIL PROTECTED]> wrote:
> :
> : I am trying to include the file ra_require.pl in Alogin.pl -
> : details are below.
> :
> : This script is calling a subroutine from the cgi script below
> : They are bot
I am trying to include the file ra_require.pl in Alogin.pl - details are below.
This script is calling a subroutine from the cgi script below
They are both cgi scripts.
When I submit my request via a html form (let us call it login.html) - it is supposed
to call Alogin.pl, but it is not working.