Advertisement
OKyJIucT

Untitled

Dec 3rd, 2021
969
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.76 KB | None | 0 0
  1. <?php
  2.  
  3. $curl = curl_init();
  4.  
  5. curl_setopt_array($curl, [
  6.     CURLOPT_URL => 'https://beta-api.solo-crm.com/mc/form',
  7.     CURLOPT_RETURNTRANSFER => true,
  8.     CURLOPT_ENCODING => '',
  9.     CURLOPT_MAXREDIRS => 10,
  10.     CURLOPT_TIMEOUT => 0,
  11.     CURLOPT_FOLLOWLOCATION => true,
  12.     CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  13.     CURLOPT_CUSTOMREQUEST => 'POST',
  14.     CURLOPT_POSTFIELDS => [
  15.         'name' => 'John Smith',
  16.         'email' => 'test@test.net',
  17.         'phone' => '+14091453225',
  18.         'address' => 'Pasadena, Lower Peters Canyon, Irvine, Orange County, USA',
  19.         'geolocation' => '[]' // То, что возвращает сервис https://locationiq.com, в виде json-строки
  20.     ],
  21. ]);
  22.  
  23. $response = curl_exec($curl);
  24.  
  25. curl_close($curl);
  26. echo $response;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement