Post JSON data via PHP cURL
Post JSON data via PHP cURL We can Post JSON data via PHP curl by using header Content-Type: application/json in CURLOPT_HTTPHEADER. Below is working code demonstration of PHP curl with post json field. <?php $url = ‘http://yourdomain.com’; $jsonString = json_encode(array(“key” => “value”)); // You can directly replace your JSON string with $jsonString variable. $ch = curl_init();…