curl post exmaple live and for localhost

 $postParameter = array(

    'name' => 'Jane',
    'phone' => '1974-8-17'
);

$curlHandle = curl_init('https://script.google.com/macros/s/AKfycbxAAiy6ogGoh2HRpW-bEgh1I7R25FIe5ab-aqvVi0PzWeYQZtfYAeWrhyyxLt45FKHT/exec');
curl_setopt($curlHandle, CURLOPT_POSTFIELDS, $postParameter);
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curlHandle, CURLOPT_SSL_VERIFYPEER, false);
$curlResponse = curl_exec($curlHandle);
curl_close($curlHandle);


echo $curlResponse."";
تعليقات