-1
我試圖做這樣的事情:COMMENT FACEBOOK社交插件+可變
我有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>
變量鏈接我tryed這一個:
$id=$_GET['id'];
<div class="fb-comments" data-href='http://comesite.com/some.php?id='".$id."' data-num-posts='5' data-width='500'></div>
不工作。當我評論一番。 php?id = 1出現在some.php?id = 2中
有什麼建議?提前致謝!