Help for this page

Select Code to Download


  1. or download this
    my %hash = ($values[0] => [$values[1]]);
    
  2. or download this
    my %hash;
    while ($values = fetchrow_array()){
    ...
    foreach $value (keys %hash){
    print "\$hash: @{$hash{$value}}\n";
    }