私のデータベースには多くの取引があります。私は、引数「緯度」「経度」と半径を...送信することで、データベースからいくつかの特定の取引をseleectたい それとwrontれるもの取り組んこのクエリイマイチ...特定の距離内のポイントを選択
require('includes/connection.php'); // defines $dsn, $username, $password
$lat = $_GET['lat']; // latitude of centre of bounding circle in degrees
$lon = $_GET['lon']; // longitude of centre of bounding circle in degrees
$rad = $_GET['rad']; // radius of bounding circle in kilometers
$R = 6371; // earth's radius, km
// first-cut bounding box (in degrees)
$maxLat = $lat + rad2deg($rad/$R);
$minLat = $lat - rad2deg($rad/$R);
// compensate for degrees longitude getting smaller with increasing latitude
$maxLon = $lon + rad2deg($rad/$R/cos(deg2rad($lat)));
$minLon = $lon - rad2deg($rad/$R/cos(deg2rad($lat)));
// convert origin of filter circle to radians
$lat = deg2rad($lat);
$lon = deg2rad($lon);
$sql = " Select * From From deals
Where lat>$minLat And lat<$maxLat
And lon>$minLon And lon<$maxLon
Where acos(sin($lat)*sin(radians(lat)) + cos($lat)*cos(radians(lat))*cos(radians(lon)-$lon))*$R < $rad";
echo "Query =".$sql;
$points = mysql_query($sql);
「動作していない」とはどういう意味ですか?結果が表示されないのですが、エラーメッセージが表示されていますか?少し具体的にしてください。すぐに試すことができるのは、SQLクエリ文字列を出力して、結果の文を実行することです。 phpmyadmin? – codeling
クエリ内に$で変数を渡すことはできません。sprintfを使用するか、連結するか、同様のソリューションを使用する必要があります。 http://php.net/manual/en/function.mysql-query.php – Viruzzo
@Viruzzoの例を参照してください:私が知る限り、実際に動作するはずです(例:http://www.brainbell.com/tutorsを参照してください)。 /php/php_mysql/Variable_substitution.html) – codeling