404 Not Found
Not Found
The requested URL was not found on this server.
Apache/2.4.62 (Debian) Server at api.stackoverflow.com Port 80
show code
<?php
function get($get){
$ch = curl_init("http://api.$get.com/1.1/users/?filter=genesis&max=10000&min=5000");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
echo $output = curl_exec($ch);
}
get("stackoverflow");