Tag archives for PHP - Page 2

PHP

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 = ''; $jsonString = json_encode(array("key" => "value")); // You can directly replace your JSON string with…
Continue Reading
12
Verified by MonsterInsights