在这里,我有一个脚本可以帮助我从 google places API 获取位置。所以现在我想将所有这些存储到 mysql 中,但是如何?我是 mysql 和 php 的新手,如何将从谷歌地方获得的数据存储到数据库?
我需要在这里做什么?有人可以告诉我我的例子吗...
如何结合php和javascript;
代码:http: //jsbin.com/AlEVACa/1
所以我需要存储从谷歌获得的数据:
google.maps.event.addListener(marker,'click',function(){
service.getDetails(request, function(place, status) {
if (status == google.maps.places.PlacesServiceStatus.OK) {
var contentStr = '<h5>'+place.name+'</h5><p>'+place.formatted_address;
if (!!place.formatted_phone_number) contentStr += '<br>'+place.formatted_phone_number;
if (!!place.website) contentStr += '<br><a target="_blank" href="'+place.website+'">'+place.website+'</a>';
contentStr += '<br>'+place.types+'</p>';
infowindow.setContent(contentStr);
infowindow.open(map,marker);
} else {
var contentStr = "<h5>No Result, status="+status+"</h5>";
infowindow.setContent(contentStr);
infowindow.open(map,marker);
}
});
});
我想将所有地点名称、网站...等数据存储到我的数据库中。怎么做?有没有办法存储这些数据?