因此,我上了一个网站,有两张超文本的下游名单——一个是美国国家名单,另一个是选定国家的城市/城市名单。 至现在为止,我每个州都有一个超文本文件,它们都有这样的选择:
<option value="44.729932, -72.381758">Albany</option>
<option value="44.976728, -73.30257">Alburg</option>
The values are the coordinates (latitude, longitude) of each town. When I hit "search", the form data is sent to a PHP script for SimpleGeo (a location database company- amazing, btw)- the purpose of selecting the town is to provide values for $lat and $lon in this part of the PHP script, which is sent to SimpleGeo for every query:
$q = $_GET[ q ];
$lat = 44.729932;
$lon = -72.381758;
$args = array( q => $q, num => 25, category => Restaurant, radius => 25);
$results = $client->getPlaces($lat, $lon, $args);
The part that can t change is the "getPlaces($lat, $lon, $args);" part because for some reason when I replace $lat and $lon with $coordinates and then replace their values with:
$coordinates = $_GET[ city ]; ( city is the name and id of my city/town lists)
它不认为它是一个有效的问题。 同时,如果你用坐标数字取代“美元、元”的话,它完全理解。
...... 我只需要把我的价值分成几个部分,无论是在超文本档案中,还是通过承认“,意思是纬度值已经结束,而变化价值已经开始。 我不知道应如何做到这一点,我只知道lat和lon必须等于我的超文本档案——每个州一个档案——确定的价值,每个档案平均有500个选择。 我怎么认识到“44.729932、-72.381758”等东西是lat和lon! 或者说,如果我提出这样的选择,那么我如何把我的下级名单放在排位和排位的数值上:
<option lat="44.976728" lon="-73.30257">Alburg</option>
感谢阅读,对它 so了这么长时间! 我的目光是: 帮助