Help for this page

Select Code to Download


  1. or download this
    $whrcls = "ID => $id, color => $color1";
  2. or download this
    $whrcls = { ID => $id, color => $color1 };
    # OR something like
    my %params = ( ID => $id, color => $color1 );
    $whrcls = \%params;