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.
-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