Help for this page

Select Code to Download


  1. or download this
    [
        {
    ...
            "info": "\t\t\t\t\t\t  \n<p>John UK Male</p> \n<p>Kieth UK Mal
    +e</p>"
        }
    ]
    
  2. or download this
    my $sth = $dbh->prepare("SELECT name country gender FROM tbl_U WHERE l
    +ocation = ?");
    $sth->execute('UK');
    ...
    
    my $json = encode_json \@updated_data;
    print $Cgi->header( -type => 'application/json' ),$json;
    
  3. or download this
    [
        {
    ...
            "info": "\t\t\t\t\t\t  \n<p>Kieth UK Male</p>"
        }
    ]