我目前有这个代码将所有信息保存到数据库但我希望能够允许用户使用他们的邮政编码进行搜索,因此只显示他们选择的半径范围内的结果。 1英里,2英里等我不知道该怎么做。
<form action="addhobby.php" method="POST">
Type:<input type="radio" name="type" value="meetup" checked>Meetup
<input type="radio" name="type" value="chat" checked>Chat
<br />
Hobby:<input type="text" name="hobby" value=""><br />
Location:<input type="text" name="location" value=""><br />
Postcode:<input type="text" name="postcode"><br />
Starts: <input type="date" name="startdate"> <input type="time" name="starttime"><br />
Ends: <input type="date" name="enddate"> <input type="time" name="endtime"> <br />
Description: <input type="text" name="description"><br />
<input type="submit" name="submit" value="Create">
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("test", $con);
$sql="INSERT INTO activities (hobby, location, postcode, sdate, stime, edate, etime, description, type) VALUES
('$_POST[hobby]','$_POST[location]', '$_POST[postcode]', '$_POST[startdate]', '$_POST[starttime]', '$_POST[enddate]', '$_POST[endtime]', '$_POST[description]', '$_POST[type]' )";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
header("location:profile.php");
mysql_close($con)
?>
答案 0 :(得分:2)
如果您可以使用HTML5 Geolocation API获取经度和纬度,为什么要使用邮政编码?
您可以使用以下SQL语句:
SELECT id, ( 3959 * acos( cos( radians(37) ) * cos( radians( lat ) ) * cos( radians( lng ) - radians(-122) ) + sin( radians(37) ) * sin( radians( lat ) ) ) ) AS distance FROM markers HAVING distance < 5 ORDER BY distance;
您必须用纬度替换lat
,用经度替换lng
。要按公里而不是英里搜索,请将3959替换为6371。
来源:https://developers.google.com/maps/articles/phpsqlsearch_v3
答案 1 :(得分:0)
为此,您需要一个邮政编码数据库,为每个邮政编码提供纬度和经度坐标。如果您有此数据,则可以查询位于指定距离之间的所有邮政编码。
您可以使用像this这样的开源邮政编码数据库(仅适用于美国)。