这就是我正在尝试的,但我不确定一定是这样。 我想收取这些变量以便稍后在我的 js 函数中使用它们
<?php
$id = $_GET['id'];
$name = "";
$lat = '';
$lng = '';
$link = mysqli_connect("localhost", "root", "", "projectppy");
if (mysqli_connect_errno()) {
printf("Falló la conexión: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT name, lat, lng FROM customers ORDER BY ID DESC";
$result = $mysqli->query($query);
/* fetch associative array */
while ($row = $result->fetch_assoc()) {
printf("%s (%s)\n", $row["name"], $row["lat"], $row["lng"]);
}
?>