Advertisement
hinney

Untitled

Apr 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1.  
  2. $orderData = [
  3. 'orders' => [
  4. [
  5. 'flat_id' => '123456',
  6. 'theme' => 'Бронирование квартиры на сайте Новоград Павлино',
  7. 'name' => 'Олеся',
  8. 'phone' => '+79039620385',
  9. 'advert_source' => 'google',
  10. 'company' => 'Компания',
  11. 'object' => 'Новоград Павлино',
  12. 'flat_house' => '1',
  13. 'flat_section' => '2',
  14. 'flat_floor' => '3',
  15. 'flat_number' => '55',
  16. 'flat_rooms' => '3',
  17. 'flat_clearance_price' => '20000',
  18. 'flat_price_for_meter' => '32000',
  19. 'flat_full_price' => '9000000',
  20. ]
  21. ]
  22. ];
  23.  
  24. $ch = curl_init();
  25. curl_setopt($ch, CURLOPT_URL, 'http://cn93703.tmweb.ru/backend/web/data');
  26.  
  27. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  28. curl_setopt($ch, CURLOPT_POST, true);
  29. curl_setopt($ch, CURLOPT_POSTFIELDS, 'data=' . json_encode($orderData));
  30. curl_setopt($ch, CURLOPT_HTTPHEADER, array('application/x-www-form-urlencoded; charset=UTF-8'));
  31. var_dump($out = curl_exec($ch));
  32. curl_close($ch);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement