Help for this page

Select Code to Download


  1. or download this
    $ua->post( $url, $field_name => $value,... Content => $content )
    
  2. or download this
    $req = $ua->post(
        $myurl,
    ...
        'Content-Type' => 'application/json; charset=utf-8',
        'Content'      => $postcontent,
    );