Help for this page

Select Code to Download


  1. or download this
        %hash = ( "info" => $json_msg);
        push( @updated_data, \%hash );
    
  2. or download this
    foreach my $res (@$result) {
      my ($name, $country, $gender) = @$res;
      push @updated_data, {info => "<p>$name $country $gender</p>"};
    }