I am using this code so far but its not working for me:
<?php
$url = 'http://maps.googleapis.com/maps/api/geocode/xml?address=Mumbai';
$xml = simplexml_load_file($url);
$lat=$xml->lat;
echo "Latitude:".$lat;
echo '<br/>';
$lng=$xml->lng;
echo "Longitude:".$lng;
echo '<br/>';
?>
I tried other questions as well in this site but didn't got any luck. Any help would be greatly appreciated.