I have a database table which stores long and lat coordinates. The user types in their postcode and should select a range for example 5 miles, then all the coordinates stored in the database which are within 5 miles should displayed. I have managed to convert the postcode the user types into coordinates but I am finding it difficult to do the next part to show only results within chosen miles.
<?php
$postcode = urlencode("$_POST[postcode]"); // post code to look up in this case status however can easily be retrieved from a database or a form post
$request_url = "http://maps.googleapis.com/maps/api/geocode/xml?address=".$postcode."&sensor=true"; // the request URL you'll send to google to get back your XML feed
$xml = simplexml_load_file($request_url) or die("url not loading");// XML request
$status = $xml->status;// GET the request status as google's api can return several responses
if ($status=="OK") {
//request returned completed time to get lat / lang for storage
$lat = $xml->result->geometry->location->lat;
$long = $xml->result->geometry->location->lng;
}
echo "$lat,$long";
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "test";
// Create connection
$conn = mysqli_connect($servername, $username, $password, $dbname);
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
$sql = "SELECT * FROM location";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {
echo " Hobby: " . $row["lat"]. " Location: " . $row["long"]. "<br>";
$lat1=$row["lat"];
echo $lat1;
}
} else {
echo "Sorry, there are no meetups yet you can create one here ";
}
mysqli_close($conn);
?>