我正在尝试做类似的事情:
我的php页面带有可变链接,例如:some.php?id = 1
我想在此页面中集成facebook评论插件,但在每个ID中,内容应该是不同的。
如何提及此插件中的变量链接
<div class="fb-comments" data-href='http://comesite.com/some.php' data-num-posts='5' data-width='500'></div>
我试过这个:
$id=$_GET['id'];
<div class="fb-comments" data-href='http://comesite.com/some.php?id='".$id."' data-num-posts='5' data-width='500'></div>
不工作..当我评论some.php?id = 1出现在some.php?id = 2中
有什么建议吗?提前谢谢!
答案 0 :(得分:0)
试试这个
<div class="fb-comments" data-href='http://comesite.com/some.php?id=<?php echo "$_GET[id]";?>' data-num-posts='5' data-width='500'></div>