Alexnder Ruff
Mitglied
Moin Moin Forum,
Ich habe ein Problem mit einer MySql Abfrage.
Hier mal der Code:
Als ergebniss kommt denn: Incorrect parameter count in the call to native function 'RADIANS'
Kann mir jemand helfen
Ich habe ein Problem mit einer MySql Abfrage.
Hier mal der Code:
PHP:
$lat = $_POST[lat];
$lon = $_POST[long];
$id = $_POST[id];
"SELECT
zc_zip,
zc_location_name,
ACOS(
SIN(RADIANS(zc_lat)) * SIN(RADIANS(".$lat."))
+ COS(RADIANS(zc_lat)) * COS(RADIANS(".$lat.")) * COS(RADIANS(zc_lon)
- RADIANS(".$lon."))
) * 6380 AS distance
FROM zip_coordinates
WHERE ACOS(
SIN(RADIANS(zc_lat)) * SIN(RADIANS(".$lat."))
+ COS(RADIANS(zc_lat)) * COS(RADIANS(".$lat.")) * COS(RADIANS(zc_lon)
- RADIANS(".$lon."))
) * 6380 < 10
AND zc_id <> ".$id."
ORDER BY distance;
Als ergebniss kommt denn: Incorrect parameter count in the call to native function 'RADIANS'
Kann mir jemand helfen