Advertisement
goodwin64

IP Shkola PHP ads

Mar 1st, 2021
1,280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2. require "/lib/finance";
  3.  
  4. $data = [
  5.     'title' => 'IP Shkola',
  6.     'is_remote' => true,
  7.     'price_per_hour' => get_formatted_price_uah(),
  8.     'lesson_types' => [
  9.         "ONE_TO_ONE",
  10.         "GROUP",
  11.         "SPEAKING_CLUB",
  12.         "INTENSIVE"
  13.     ],
  14.     'date_created' => '2018-05-16T20:00:00.000Z',
  15. ];
  16.  
  17. header('Content-Type: application/json');
  18. echo json_encode($data);
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement