I was wondering if it's possible to send a cURL Request from a specific country without using a proxy?
My problem is that everytime I send a request with cURL I get the language in the 'server language' which is 'dutch' because my hosting are in Netherlands.
Can't you just set the language header as additional header?
$header = array();
$header[] = "Accept-Language: en-us,en;q=0.5";
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
I declared an array because you can set multiple headers like the user-agent etc...