以下の MySQL クエリに次のコードを適用しようとしていますが、その方法がわかりません。クエリは 1 行だけを返す必要があります。この行の「コード」列からデータを抽出し、それを変数として 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();
}