gpt4 book ai didi

php - 将 HTML5 位置插入 MySQL 数据库

转载 作者:行者123 更新时间:2023-11-29 07:47:35 25 4
gpt4 key购买 nike

我想将用户的 HTML5 位置插入数据库。所以基本上我希望它提交用户按下提交时所在的位置。

HTML5 位置代码:

var x = document.getElementById("demo");

function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}

function showPosition(position) {
x.innerHTML = "Latitude: " + position.coords.latitude +
"<br>Longitude: " + position.coords.longitude;
}

我当前的代码:

$post = filter_input(INPUT_POST, 'post', FILTER_SANITIZE_SPECIAL_CHARS);
$name = filter_input(INPUT_POST, 'name', FILTER_SANITIZE_SPECIAL_CHARS);

INSERT INTO news (post, name, date, location) VALUES ('".$post."', '".$name."', '".date('Y-m-d H:i:s')."', '".$location."')

最佳答案

您将需要一个 Ajax 调用,例如:

function postData(phpFile, newData){
$.ajax({
type: 'POST',
data: newData,
url: phpFile,
success: function(data) {
},
error: function() {}
});
}

按下提交按钮后,您将调用postData('yoursavephpfile.php', { "location": getLocation() });通过 onclick 属性。 (假设您的 getLocation 返回位置值)注意:不要忘记将最新的 jquery 添加到标题中:

<script src="http://code.jquery.com/jquery-latest.min.js"
type="text/javascript"></script>

您的 php 文件如下所示:

<?php

$location = $_POST['location'];
//Then perform your query here......
?>

关于php - 将 HTML5 位置插入 MySQL 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27302987/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com