-1

我正在尝试做这样的事情:

我有带有可变链接的 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 中

有什么建议么??提前致谢!

4

1 回答 1

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>
于 2012-05-16T00:06:30.377 回答