这里我正在计算个人资料所有者关注的人数,输出数字是打开新页面的链接,所有被关注的人都会被显示,计数效果很好并且给出了被跟踪的人数但是现在要完成我的下一页说following.php
所有被关注的人都将被显示我需要将变量$id
传递给我想要使用url方法的页面,请帮我解决这个问题。
<?php
$checkfollowing =$db->prepare("SELECT * FROM follow_user WHERE uid_fk=:id");
$checkfollowing->execute(array(':id'=>$id));
$count = $checkfollowing->rowCount(); ?>
<a href='following.php' style='text-decoration:none;margin-left:40px;'><?php print $count; ?></a>
答案 0 :(得分:2)
您可以通过url传递值,并使用$_GET
方法获取其他页面上的值。
检查以下代码。
<a href='following.php?id=<?php echo $id ; ?>' style='text-decoration:none;margin-left:40px;'><?php print $count; ?></a>
答案 1 :(得分:2)
<a href='following.php?id=<?php echo $id; ?>' style='text-decoration:none;margin-left:40px;'><?php print $count; ?></a>
答案 2 :(得分:1)
您可以通过在网址末尾指定变量来通过网址传递变量。像这样
<a href='following.php?count=<?php echo $count; ?>' style='text-decoration:none;margin-left:40px;'><?php print $count; ?></a>