发布于2024-10-31 15:35 阅读(828) 评论(0) 点赞(26) 收藏(2)
我想将每个实例提取的特定用户 ID 传递给另一个 php 文件 full_details.php,以便它动态生成一个页面
$stmt = $DB_con->prepare('SELECT userID, userDate, userName, userAge, userSex, userPic, userLocation, userStatus, userDetails FROM tbl_users ORDER BY userID DESC');
$stmt->execute();
if($stmt->rowCount() > 0)
{
while($row=$stmt->fetch(PDO::FETCH_ASSOC))
{
extract($row);
?>
<div class="col-sm-4 col-xs-6">
<div class="single-product">
<figure>
<img src="user_images/<?php echo $row['userPic']; ?>" />
<figcaption>
<div class="read-more">
<a href="full_details.php"><i class="fa fa-angle-right"></i> Full Details</a>
</div>
</figcaption>
</figure>
<h4><a href="#"><?php echo $row['userName']." / "."age :".$row['userAge']; ?></a></h4>
<h5><a href="#"><?php echo $row['userStatus'] ?></a></h5>
</div> <!-- end .single-product -->
</div> <!-- end .grid-layout -->
不太容易理解你在问什么...
我想将每个实例提取的特定用户 ID 传递给另一个 php 文件 full_details.php,以便它动态生成一个页面
那么你需要在 URI 中传递该 ID 给该 href 吗?像这样:
<div class="read-more">
<a href="full_details.php?user_id=<?= $row['userID'] ?>"><i class="fa fa-angle-right"></i> Full Details</a>
</div>
然后在 full_details.php 上你可以像这样检索GET parameter
:
$userId = (isset($_GET['user_id')) ? $_GET['user_id'] : null;
这有帮助吗?
作者:黑洞官方问答小能手
链接:http://www.phpheidong.com/blog/article/554229/960a32dd87f141f8b1ca/
来源:php黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 php黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-4
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!