Help for this page

Select Code to Download


  1. or download this
    # this
    $count{$param1} = $param1 * $param2;
    # to this for example
    $count{$param1}{$param2}{'count'} = $param1 * $param2;
    
  2. or download this
    # this
    ++$hashref->{ $key };
    # to this for example
    ++$hashref->{ $key }->{'count'}