Help for this page

Select Code to Download


  1. or download this
    [
      {
    ...
      }
    ]
    
  2. or download this
    {
        "id": 1
    ...
        "name": "jake"
        "gender": "male"
      }
    
  3. or download this
    my %hash;
    foreach my $result (@$result) {
    ...
    
    my $json = encode_json \%hash;
    print $CGI->header( -type => 'application/json' ),$json;