These are the lines in the PHP, that create the error.
// Iterate through the rows, adding XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
$node = $dom->createElement("marker");
$newnode = $parnode->appendChild($node);
$newnode->setAttribute("name", $row['name']); =Line45
$newnode->setAttribute("address", $row['address']); =Line 46
$newnode->setAttribute("lat", $row['lat']);
$newnode->setAttribute("lng", $row['lng']);
$newnode->setAttribute("distance", $row['distance']);
in my database, there is basicly the following rows: (example)
ID Name Address
Lat Lng
1 ABC Köln Marktstraße 5, Köln 52,xxx
8,xxxx
So where shall i add that lines ?
--
You received this message because you are subscribed to the Google Groups
"Google Maps API V2" 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.