基本上,我正在设置一个 mysql 准备的 select 语句,它使用 GET 从 url 中提取 id 我遇到的问题是类别和描述变量没有回显。
我使用了一个非准备好的语句,它工作得很好。我尝试将变量输入到绑定结果中。
$catid=intval($_GET['cid']);
$stmt = mysqli_prepare($con, "Select id,CategoryName,Description,PostingDate,UpdationDate from tblcategory where Is_Active=1 and id='$catid'");
$stmt->bind_param("ssi", $category,$description,$catid);
$stmt->execute();
$stmt->bind_result($category,$description,$catid);
$stmt->fetch();
echo $category;
echo $description
此代码的预期结果是从 url 中提取 catid 并选择所有列信息,然后能够回显描述和类别变量。
长风秋雁