gpt4 book ai didi

PHP MYSQL 更新查询不起作用没有错误

转载 作者:行者123 更新时间:2023-11-29 17:35:24 26 4
gpt4 key购买 nike

        $cod = $_POST['cod'];
$nume = $_POST['nume'];
$prenume = $_POST['prenume'];
$institutie = $_POST['institutie'];

$introduceredate = "UPDATE concurenti SET nume = $nume, prenume = $prenume, institutie = $institutie WHERE cod = $cod";
$querydate = mysqli_query($db, $introduceredate);
if(!querydate)
{
printf("Error: %s\n", mysqli_error($db));
exit();
}
header("Refresh:0");

错误日志中没有错误,或者页面上没有任何错误,我无法弄清楚。没有任何内容通过数据库发送。

最佳答案

查询中的参数需要位于单引号内。例如“$prenume”。

您也应该查看准备好的语句,这将帮助您避免任何 SQL 注入(inject)攻击。如果您不想走这条路,则需要清理您的帖子值。

关于PHP MYSQL 更新查询不起作用没有错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50313695/

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