On Oct 27, 8:12 am, Seppie <[email protected]> wrote: > > I am sure (?!) the problem lies in the file > phpsqlajax_genxml_sites.php, which is basically a slightly edited > version of the Google tutorial file. > (here:http://www.dsys.ca/testing/foo1.html)
This is a PHP query, I think, not a question about the API. //$Community_ID = echo $_GET[Community_ID]; //If this line is uncommented, nothing is returned Why are you using "echo"? That outputs the Community_ID argument, but echo does not return anything so $Community_ID is set to null. Try $Community_ID = $_GET['Community_ID']; note the correct syntax includes quotes around the array index (although it will work without). -- 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.
