These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
CREST /wars/ issue, maybe, maybe its a feature...
$ch = curl_init();curl_setopt($ch, CURLOPT_URL, 'https://crest-tq.eveonline.com/wars/');curl_setopt($ch, CURLOPT_HEADER, false);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);$result = curl_exec($ch);$result = json_decode($result,true);$numWars = $result['totalCount'];curl_close($ch);echo $numWars;exit();