Hi,
I will try to explain my situation:
I am storing some coordinates of the map in a web database with a interface in PHP. I want to get just the latitude and longitude of the points which are in a specific radius. In the SQL instruction I put the condition:
"where SQRT(POW((point_latitude - ".$_POST["latitude_center"]."),2) + POW((point_latitude - ".$_POST["latitude_center"]."),2)) <= ".$_POST["radius"]."
This calculates the distance between 2 points (analytic geometry). The point_latitude and point_longitude are stored in int
I'd like to know how I do this.
Sorry with my bad english.


