我的目标是能够获取一个变量(使用 php)并在准备好的语句(使用 mysqli)中使用它,然后 fetch_assoc。由于某种原因,此代码将不起作用(没有错误)。我有 rtm 并且我没有找到任何将 fetch_assoc 与准备好的语句结合起来的东西,所以我不确定它是否可能。感谢您提供任何帮助以使其正常工作,这是我目前的代码。
$where = $_GET['section'];
$mysqli = mysqli_connect("localhost", "root", "","test");
if($stmt = mysqli_prepare($mysqli,"SELECT title, img, active, price FROM ? ORDER by ID limit 5 ")){
mysqli_stmt_bind_param($stmt, 's', $where);
mysqli_stmt_execute($mysqli);
mysqli_stmt_fetch($mysqli);
while($row = mysqli_fetch_assoc($stmt)){
if($row['active']=="yes"){
echo 'the rest of my stuff goes here';