作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 MYSQLi 在数据库中插入数据。如果我使用以下查询,则会插入数据;
INSERT INTO table (Name, Phone, Location) VALUES ('test', 'test', 'test')
$test = 'xxx';
if ($stmt = $mysqli->prepare("INSERT INTO table (Name, Phone, Location) VALUES (".$test.", 'aaa', 'bbb')")) {
$stmt->execute();
$stmt->close();
}
bind_param
命令,但没有用。
$stmt->bind_param("ss", $name, $phone, $location);
最佳答案
在你的情况下,代码应该是这样的:
$test = 'xxx';
$stmt = $mysqli->prepare("INSERT INTO table (Name, Phone, Location) VALUES (?, 'aaa', 'bbb')");
$stmt->bind_param("s", $test);
$stmt->execute();
$stmt->close();
$name = "My name";
$phone = "My phone number";
$location = "My location";
$stmt = $mysqli->prepare("INSERT INTO table (Name, Phone, Location) VALUES (?, ?, ?)");
$stmt->bind_param("sss", $name, $phone, $location);
$stmt->execute();
$stmt->close();
关于php - 如何在 MySQLi 语句中插入变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15945502/
我是一名优秀的程序员,十分优秀!