I am trying to access the exrernal url using file_get_contents. And I am getting 302 moved as the response. It was working fine in my localhost.
$to_currency= 'GBP';
$from_currency = 'USD';
$amount= 100;
$urlarg = "hl=en&q=$amount$from_currency%3D%3F$to_currency";
file_get_contents("http://google.com/ig/calculator?".$urlarg);
How to resolve this issue?