我正在尝试为下面的 MySQL 查询调整以下代码,但不知道如何去做。查询应该只返回一行,我想从该行中的“代码”列中提取数据并将其作为变量传递给我的 PHP 脚本。
/* prepare statement */
if ($stmt = $mysqli->prepare("SELECT Code from Clients where Name='Jane'")) {
$stmt->execute();
/* bind variables to prepared statement */
$stmt->bind_result($code);
/* fetch values */
while ($stmt->fetch()) {
printf($code);
}
/* close statement */
$stmt->close();
}