gpt4 book ai didi

PHP UPDATE 准备语句

转载 作者:IT王子 更新时间:2023-10-29 00:11:46 25 4
gpt4 key购买 nike

我正在努力学习使用准备好的语句来避免 SQL 注入(inject)等的正确方法。

当我执行脚本时,我从我的脚本中收到一条消息,提示已插入 0 行,我希望这会提示已插入 1 行,当然还会更新表格。我不完全确定我准备好的陈述,因为我已经做了一些研究,我的意思是它因示例而异。

当我更新我的表格时,我需要声明所有字段还是只更新一个字段就可以了??

任何信息都会非常有帮助。

index.php

<div id="status"></div>

<div id="maincontent">
<?php //get data from database.
require("classes/class.Scripts.inc");
$insert = new Scripts();
$insert->read();
$insert->update();?>

<form action="index2.php" enctype="multipart/form-data" method="post" name="update" id="update">
<textarea name="content" id="content" class="detail" spellcheck="true" placeholder="Insert article here"></textarea>
<input type="submit" id="update" name="update" value="update" />
</div>

类/class.Scripts.inc

public function update() {
if (isset($_POST['update'])) {
$stmt = $this->mysqli->prepare("UPDATE datadump SET content=? WHERE id=?");
$id = 1;
/* Bind our params */
$stmt->bind_param('is', $id, $content);
/* Set our params */
$content = isset($_POST['content']) ? $this->mysqli->real_escape_string($_POST['content']) : '';

/* Execute the prepared Statement */
$stmt->execute();
printf("%d Row inserted.\n", $stmt->affected_rows);

}
}

最佳答案

$stmt = $this->mysqli->prepare("UPDATE datadump SET content=? WHERE id=?");
/* BK: always check whether the prepare() succeeded */
if ($stmt === false) {
trigger_error($this->mysqli->error, E_USER_ERROR);
return;
}
$id = 1;
/* Bind our params */
/* BK: variables must be bound in the same order as the params in your SQL.
* Some people prefer PDO because it supports named parameter. */
$stmt->bind_param('si', $content, $id);

/* Set our params */
/* BK: No need to use escaping when using parameters, in fact, you must not,
* because you'll get literal '\' characters in your content. */
$content = $_POST['content'] ?: '';

/* Execute the prepared Statement */
$status = $stmt->execute();
/* BK: always check whether the execute() succeeded */
if ($status === false) {
trigger_error($stmt->error, E_USER_ERROR);
}
printf("%d Row inserted.\n", $stmt->affected_rows);

回复你的问题:

I get a message from my script saying 0 Rows Inserted

这是因为你在绑定(bind)参数的时候把参数的顺序颠倒了。因此,您在 id 列中搜索 $content 的数值,它可能被解释为 0。因此 UPDATE 的 WHERE 子句匹配零行。

do I need to declare all the fields or is it ok to just update one field??

可以在 UPDATE 语句中只设置一列。其他列不会改变。

关于PHP UPDATE 准备语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18316501/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com