Ah, that means the data from database are not the problem but the data
from the geocoder.
Ok I just have changed the code from $xml
=simplexml_load_file($request_url) or die("url not loading"); to
$handle = fopen($request_url, "rb") or die("url not loading");
$text = stream_get_contents($handle);
fclose($handle);
$text = htmlentities($text,ENT_COMPAT,'UTF-8');
$xml = simplexml_load_string($text);
and now I get "Address Hans-Beimler-Str. 1-3, 17491 Greifswald,
Deutschland failed to geocoded. Received status ".
Means I'm a bit forward in the script, near the end, but in the wrong
part ;-).
Don't know what this means. I'm not to fast but the status was not 200
but nothing?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---