File: /www/wwwroot/healthyton.com/wp-scrap/corona.php
<?php
$url = 'https://api.coronatracker.com/v3/stats/worldometer/topCountry?limit=500&sort=-confirmed';
$data = json_decode(file_get_contents($url), true);
$confirmed = 0;
$deaths = 0;
$recovered = 0;
$result = array();
foreach($data as $res){
$result[] = array(
'country'=>$res['country'],
'confirmed' => $res['totalConfirmed'],
'recovered' => $res['totalRecovered'],
'deaths' => $res['totalDeaths'],
);
}
header('Content-Type: application/json');
echo json_encode($result);