Re: interpolating a variable with a request parameter

2003-10-31 Thread radhika sambamurti
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; > > >

interpolating a variable with a request parameter

2003-10-31 Thread radhika sambamurti
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

Re: cgi script not workingI

2003-10-23 Thread radhika sambamurti
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

cgi script not workingI

2003-10-23 Thread radhika sambamurti
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.