php get data from api
$api_url = 'http://dummy.restapiexample.com/api/v1/employees';
// Read JSON file
$json_data = file_get_contents($api_url);
// Decode JSON data into PHP array
$response_data = json_decode($json_data);
// Print data if need to debug
//print_r($user_data);