So I'm using the php/sql method (
http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html) to display my data. I've modified the xml and it correctly shows my data. I'd like to sort on one of my columns, but I cannot get it to show all.
$query = sprintf("SELECT Juris, Cost, lat, lng, ( 3959 * acos( cos( radians('%s') ) * cos( radians( lat ) ) * cos( radians( lng ) - radians('%s') ) + sin( radians('%s') ) * sin( radians( lat ) ) ) ) AS distance FROM ARP_projects WHERE Juris = $Juris",
Now if I use the following address it works fine.....anacostia_xml_domnew.php?lat=39&lng=-77&radius=10000&Juris=PG
what should i replace PG with to show all records? the standard * doesn't seem to work.