Help for this page

Select Code to Download


  1. or download this
       print "Print city: $result->[0]{'city'}\n";
    
  2. or download this
         my %hash = %{$result->[0]};  # copy result to new hash
         ...
         print "Print city: $hash{'city'}\n";