gpt4 book ai didi

php - 通过 url 将 id 传递到第二页

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

我试图将 id 传递到我从另一个表中选择的第二页,但下面的代码不起作用。当我执行 var_dump 时,我可以看到这些值是我想要的,但主查询的行没有显示(标题和图像没有显示)。

我有两个查询,其中一个位于另一个查询内。有人可以帮我吗?如果我去掉第二个查询的 while 循环,主查询就可以正常工作。

        $paginate = new pagination($page, "SELECT * FROM table1 where title != '' ORDER BY id desc"  , $options);
}
}
catch(paginationException $e)
{
echo $e;
exit();
}
if($paginate->success == true)
{
$result = $paginate->resultset->fetchAll();
foreach($result as $row)

{
$dx = $row['image_one'];//image_one from main query
//second query
$item = $mydb->prepare("select * from table2 where imageone = ?");
$item->bind_param('s', $dx);
$item->execute();
$item_res = $item->get_result();
while($row = $item_res->fetch_assoc()){
$rx = $row['id'];
var_dump($rx);
} //the rows below aren't being displayed
$path = 'images/';
echo "<a href='second.php?title=".urlencode($row['title'])." &amp;item=".$row['id']."&amp;id=".$rx."'>"."<img src='".$path."".$row['image_one']."'/></div>"."</a>";
}

最佳答案

试试这个:

echo "<a href='second.php?title="'.urlencode($row['title']).'" &amp;item="'.$row['id'].'"&amp;id="'.$rx.'"'>"."<img src='"'.$path.'"".$row['image_one']."'/></div>"."</a>";

在变量名称周围使用' '

关于php - 通过 url 将 id 传递到第二页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20171097/

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