gpt4 book ai didi

具有可变数字表名称的 PHP-SQL 准备语句

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

我需要帮助才能使此代码正常工作:

<?php

$a = $_GET["a"];

$stmt = mysqli_stmt_init($conn);

if (mysqli_stmt_prepare($stmt,"SELECT * FROM `?`")) {

mysqli_stmt_bind_param($stmt, "i", $a);
mysqli_stmt_execute($stmt);
$res = mysqli_stmt_get_result($stmt);

while($row = mysqli_fetch_array($res)){
if($row["id"] == 0){
$title = $row["title"];
$mal = $row["mal"];
}
}

mysqli_stmt_close($stmt);
}

?>

在我的数据库中,我有一些带有数字名称的表(1,2,3...),我想通过 URL 中的变量 $a 获取我想要的表。

最佳答案

您不能使用准备好的语句绑定(bind)对象名称(在本例中为表名称),只能使用值。您必须求助于字符串操作(为简洁起见,省略了 SQL 清理):

if (mysqli_stmt_prepare($stmt,"SELECT * FROM `$a`")) { # Here!

mysqli_stmt_execute($stmt);
$res = mysqli_stmt_get_result($stmt);

关于具有可变数字表名称的 PHP-SQL 准备语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47775790/

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