mysql — PHP вопрос запроса в настройке значений?

Быстрый вопрос. У меня есть SQL-запрос, который работает с моей базой данных. Тем не менее, я должен быть уверен, как установить параметры в моем файле PHP, чтобы он работал с моим запросом?

Есть идеи? У меня проблемы с настройкой параметров с точки зрения php и заставить мой запрос работать.

<?php

/*
* Following code will list all the products
*/

// array for JSON response
$response = array();

// include db connect class
require_once __DIR__ . '/db_connect.php';

// connecting to db
$db = new DB_CONNECT();

set $orig_lat=32.42;
set $orig_long=-23.550;
set $bounding_distance=1;

// get all products from products table
$result = mysql_query(" SELECT * ,((ACOS(SIN($orig_lat * PI() / 180) * SIN(`latitude` * PI() /
180) + COS($orig_lat * PI() / 180) * COS(`latitude` * PI() / 180) *
COS(($orig_long - `longitude`) * PI() / 180)) * 180 / PI()) * 60 *
1.1515) AS `distance` FROM `Location` WHERE ( `latitude` BETWEEN
($orig_lat - $bounding_distance) AND ($orig_lat + $bounding_distance)
AND `longitude` BETWEEN ($orig_long - $bounding_distance) AND
($orig_long + $bounding_distance) ) ORDER BY `distance` ASC limit 1") or die(mysql_error());

// check for empty result
if (mysql_num_rows($result) > 0) {
// looping through all results
// products node
$response["Location"] = array();

while ($row = mysql_fetch_array($result)) {
// temp user array
$Location = array();
$Location["id"] = $row["id"];
$Location["latitude"] = $row["latitude"];
$Location["longitude"] = $row["longitude"];// push single product into final response array
array_push($response["Location"], $Location);
}
// success
$response["success"] = 1;

// echoing JSON response
echo json_encode($response);
} else {
// no products found
$response["success"] = 0;
$response["message"] = "No Profiles found";

// echo no users JSON
echo json_encode($response);
}
?>

0

Решение

Это была простая проблема синтаксиса … Значения, которые соответствовали запросу, не были хорошо отмечены. В файле PHP вы не можете писать переменные set и объявлять, используя $.

Оригинал:

set $orig_lat=32.42;
set $orig_long=-23.550;
set $bounding_distance=1;

Решение:

$orig_lat=32.42;
$orig_long=-23.550;
$bounding_distance=1;
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]