我正在尝试在内容表中插入值。如果我在 VALUES 中没有 PHP 变量,它工作正常。当我将变量
$type
放在 VALUES
中时,这是行不通的。我做错了什么?
$type = 'testing';
mysql_query("INSERT INTO contents (type, reporter, description)
VALUES($type, 'john', 'whatever')");
在任何 MySQL 语句中添加 PHP 变量的规则简单明了:
此规则涵盖 99% 的查询,尤其是您的查询。任何表示 SQL 数据字面量 的变量(或者,简单地说 - 一个 SQL 字符串,或一个数字)必须通过准备好的语句添加。 没有例外.
此方法涉及四个基本步骤
这里是如何使用所有流行的 PHP 数据库驱动程序:
mysqli
$type = 'testing';
$reporter = "John O'Hara";
$query = "INSERT INTO contents (type, reporter, description)
VALUES(?, ?, 'whatever')";
$stmt = $mysqli->prepare($query);
$stmt->bind_param("ss", $type, $reporter);
$stmt->execute();
代码有点复杂,但可以在我的文章How to run an INSERT query using Mysqli 中找到所有这些运算符的详细解释,以及显着简化过程的解决方案。
对于 SELECT 查询,您只需添加对
get_result()
方法的调用即可获得熟悉的 mysqli_result
,您可以从中以通常的方式获取数据:
$reporter = "John O'Hara";
$stmt = $mysqli->prepare("SELECT * FROM users WHERE name=?");
$stmt->bind_param("s", $reporter);
$stmt->execute();
$result = $stmt->get_result();
$row = $result->fetch_assoc(); // or while (...)
$type = 'testing';
$reporter = "John O'Hara";
$query = "INSERT INTO contents (type, reporter, description)
VALUES(?, ?, 'whatever')";
$stmt = $pdo->prepare($query);
$stmt->execute([$type, $reporter]);
在PDO中,我们可以将bind和execute部分结合起来,非常方便。 PDO 还支持一些人认为非常方便的命名占位符。
任何其他查询部分,例如 SQL 关键字、表或字段名称或运算符 - 必须通过 白名单过滤。
有时我们必须添加一个变量来表示查询的另一部分,例如关键字或标识符(数据库、表或字段名称)。这种情况很少见,但最好做好准备。
在这种情况下,必须根据 显式 编写在脚本中的值列表检查您的变量。这在我的另一篇文章Adding a field name in the ORDER BY clause based on the user's choice:
不幸的是,PDO 没有标识符(表和字段名称)的占位符,因此开发人员必须手动过滤掉它们。这样的过滤器通常被称为“白名单”(我们只列出允许的值),而不是我们列出不允许的值的“黑名单”。
所以我们必须在 PHP 代码中明确列出所有可能的变体,然后从中选择。
举个例子:
$orderby = $_GET['orderby'] ?: "name"; // set the default value
$allowed = ["name","price","qty"]; // the white list of allowed field names
$key = array_search($orderby, $allowed, true); // see if we have such a name
if ($key === false) {
throw new InvalidArgumentException("Invalid field name");
}
方向应该使用完全相同的方法,
$direction = $_GET['direction'] ?: "ASC";
$allowed = ["ASC","DESC"];
$key = array_search($direction, $allowed, true);
if ($key === false) {
throw new InvalidArgumentException("Invalid ORDER BY direction");
}
在这样的代码之后,
$direction
和 $orderby
变量都可以安全地放入 SQL 查询中,因为它们要么等于允许的变体之一,要么会抛出错误。
关于标识符的最后一件事,它们也必须根据特定的数据库语法进行格式化。对于 MySQL,它应该是标识符周围的
backtick
字符。所以我们的示例订单的最终查询字符串是
$query = "SELECT * FROM `table` ORDER BY `$orderby` $direction";
为了避免 SQL 注入,使用 be 插入语句
$type = 'testing';
$name = 'john';
$description = 'whatever';
$con = new mysqli($user, $pass, $db);
$stmt = $con->prepare("INSERT INTO contents (type, reporter, description) VALUES (?, ?, ?)");
$stmt->bind_param("sss", $type , $name, $description);
$stmt->execute();
最好的选择是准备好的语句。 开始使用引号和转义符是一项艰巨的工作,并且难以维护。迟早你会不小心忘记引用某些东西或者最终转义同一个字符串两次,或者搞砸类似的事情。可能需要几年时间才能发现这些类型的错误。
$type 中的文本直接替换为插入字符串,因此 MySQL 得到:
... VALUES(testing, 'john', 'whatever')
请注意,测试周围没有引号,您需要像这样放置它们:
$type = 'testing';
mysql_query("INSERT INTO contents (type, reporter, description) VALUES('$type', 'john', 'whatever')");
我还建议您阅读 SQL 注入,因为如果您不清理正在使用的数据,这种参数传递很容易被黑客攻击:
这是简单的答案:
$query="SELECT * FROM CountryInfo WHERE Name = '".$name."'";
然后你定义
$name
任何你想要的。$query = " SELECT '" . $GLOBALS['Name'] . "' .* " .
" FROM CountryInfo " .
" INNER JOIN District " .
" ON District.CountryInfoId = CountryInfo.CountryInfoId " .
" INNER JOIN City " .
" ON City.DistrictId = District.DistrictId " .
" INNER JOIN '" . $GLOBALS['Name'] . "' " .
" ON '" . $GLOBALS['Name'] . "'.CityId = City.CityId " .
" WHERE CountryInfo.Name = '" . $GLOBALS['CountryName'] .
"'";