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;
> > >
>
> On Friday, Oct 31, 2003, at 10:01 US/Pacific, radhika sambamurti wrote:
>
> > Hi,
> > I am trying to do this:
> >
> > for( $i = 0; $i < 5; $i++) {
> > $qty[$i] = $q->param('qty$i');
>
> what you are probably finding is that
>
> $qty[0] eq 'qty$i'
>
> since you used the sing
On Friday, Oct 31, 2003, at 10:01 US/Pacific, radhika sambamurti wrote:
Hi,
I am trying to do this:
for( $i = 0; $i < 5; $i++) {
$qty[$i] = $q->param('qty$i');
what you are probably finding is that
$qty[0] eq 'qty$i'
since you used the single quote token.
whereas
$qty[$i] = $
>
>
> > 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. T
> 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
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
The links are real, and the message sent is "Premature end of scripts
headers",
like if I tryied to print something before sending the header, but I
reviewed my
code and only at last I send a print message, validated for any kind of
call:
It looks something like:
if ($bExternal) { print "Lo
Hi all,
I'm writing an app which uses a flat file to store a
*short* list of simple key/value pairs. However having
read the flock() man page, I'm unsure about whether I
need to seek() in cases where I'm not merely appending
to the file (such as when deleting a record).
sub Delete_Record {
my
>
> I created a CGI that returns an txt code (to display a banner), but what
> it looks strange to me is that if I call it with only one parameter
> (type of code to return, and associated variable) it works fine, but if
> I use an other parameter, it sends me an error message.
>
> This wor
I created a CGI that returns an txt code (to display a banner), but what
it looks strange to me is that if I call it with only one parameter
(type of code to return, and associated variable) it works fine, but if
I use an other parameter, it sends me an error message.
This works fine:
http://w
10 matches
Mail list logo