Hello,

I am fighting debugging probably a syntax error in the script I have used
for the following map

http://www.serate-italiane.dk/phpsqlajax_map.htm

It is supposed to vosualize some markers which I generate reading data
from the database.

I cannot find out where the error is. It used to work.
Any hints in general on how I can debug such errors?


while ($row = @mysql_fetch_assoc($result)){
  // ADD TO XML DOCUMENT NODE
  echo '<marker ';
  echo 'name="' . parseToXML($row['pagina']) . '" ';
  echo 'address="' . parseToXML($row['address']) . '" ';
  echo 'giorno="' . parseToXML($row['giorno']) ." ".
parseToXML($row['mese']). " ". parseToXML($row['anno']).  '" ';
  echo 'lat="' . $row['lat'] . '" ';
  echo 'lng="' . $row['lng'] . '" ';
  echo 'type="' . $row['type'] . '" ';
  echo '/>';
}


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" 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-AJAX-Search-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to