Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writing a blog in php, and when I was going to add comments, I figured nobody would want to have to register on my blog to post comments, so I decided to try facebook comments.

I found the comments box, but as far as I read, I'll have one box for all my posts. I want to know how do I make different comments for each post I make?

posts url layout is like http://xxxxxxx.com/post.php?postid=1 , postid=2 and so on.

thanks in advance

share|improve this question

1 Answer

To create unique comment boxes dynamicly i use $_SERVER request for php. This sample uses the html5 version of the comment box, same can be done with the xfbml version as well.

<?php
$url = (!empty($_SERVER['HTTPS'])) ? 'https://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] : 'http://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
?>

<div class="fb-comments" data-href="<?php echo $url; ?>" data-num-posts="2" data-width="470"></div>
share|improve this answer
1  
thanks! it worked like a charm. – Rafael Adamy Mar 27 '12 at 14:11
Rafael, if you could please mark the answer as correct so that other users may find this solution. – Shawn E Carter Mar 27 '12 at 16:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.