RE: Re: Ref Q

2001-04-03 Thread Rubinow, Larry
Grant Hopwood wrote: > -start- > ># creation of hash of arrays > >$sth = &DoSQL($sql); > >while (($item, $cost, $charge) = $sth->fetchrow_array()) { > >push @{$costtable{$item}}, ($cost, $charge); > >} > > >Using symbolic references "@{$varname}" is not recommended practice.

Re: Re: Ref Q

2001-04-03 Thread Grant Hopwood
-start- ># creation of hash of arrays >$sth = &DoSQL($sql); >while (($item, $cost, $charge) = $sth->fetchrow_array()) { >push @{$costtable{$item}}, ($cost, $charge); >} >Using symbolic references "@{$varname}" is not recommended practice. Perhaps a rethink of how you would li