尝试按照Google API指南使用phpmyadmin数据库创建标记

时间:2018-03-20 12:14:08

标签: php google-api

我正在尝试学习如何从Xampp phpmyadmin sql数据库导出到google API来创建标记。

我正在尝试遵循本指南:

https://developers.google.com/maps/solutions/store-locator/clothing-store-locator?csw=1

我进入"检查XML输出是否有效"部分。 我尝试通过在浏览器中输入来运行我的脚本:http://localhost/projectgmaps/storelocator.php

这会打开一个页面: *

  

注意:未定义的索引:lat in   第4行的C:\ xampp \ htdocs \ projectgmaps \ storelocator.php注意:   未定义的索引:lng在C:\ xampp \ htdocs \ projectgmaps \ storelocator.php中   第5行注意:未定义索引:半径in   第6行的C:\ xampp \ htdocs \ projectgmaps \ storelocator.php致命错误:   未捕获的错误:调用未定义的函数mysql_connect()   C:\ xampp \ htdocs \ projectgmaps \ storelocator.php:12堆栈跟踪:#0   {main}在C:\ xampp \ htdocs \ projectgmaps \ storelocator.php中抛出   12

* 这是第4,5,6行:

$center_lat = $_GET["lat"];
$center_lng = $_GET["lng"];
$radius = $_GET["radius"];

这是第12行:

$connection=mysql_connect (localhost, $username, $password);

有人能告诉我这里有什么问题吗?

0 个答案:

没有答案