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.

My application shows several items whereby users can search. I want to place a like button for each item and this will be generated automatically using PHP. Before implementing it, I'm trying to test something which is not working.

<div class="fb-like" data-href="http://www.example.com/index.php?item=1" data-send="true" data-width="450" data-show-faces="true"></div>

When I'm putting it on the page, the facebook like button is not appearing, any idea??

share|improve this question

1 Answer

up vote 0 down vote accepted

Ok, I've managed to solve it,

ensure to place these codes blow after you declare <div class="fb-like" data-href="http://www.example.com/index.php?item=1" data-send="true" data-width="450" data-show-faces="true"></div>

<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
  FB.init({
    status : true, // check login status
    cookie : true, // enable cookies to allow the server to access the session
    xfbml  : true  // parse XFBML
  });
</script>
share|improve this answer

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.