Get geocodes / coordinates of addresses with Google Maps API

<? $address = utf8_encode('1030 wien'); //Use this function to avoid problems with special characters, like German 'Umlaute' $response = file_get_contents('http://maps.googleapis.com/maps/api/geocode/json?address=' . urlencode($address) . '&amp;sensor=true');...
  [email protected]