如何在 PHP 变量中保存来自 MySQL 数据库的单行数据?

问题描述 投票:0回答:0

这就是我正在尝试的,但我不确定一定是这样。 我想收取这些变量以便稍后在我的 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"]);
}

?>
php mysql mysqli
© www.soinside.com 2019 - 2024. All rights reserved.