Help for this page

Select Code to Download


  1. or download this
    #use HTTP::Request::Common;
    use HTTP::Request;
    ...
    $request->content( $json );
    ...
    
  2. or download this
    my $json = $query->param('POSTDATA');
    my $data = decode_json( $json );
    ...