Does facebook Like Button return any value (PHP)?
I want to execute another function after user like my webpage. Does facebook Like Button return any value like true or false. So I can perform any operation after ? Or is there another alternative ?? You'll have to use the Javascript API to do this: FB.Event.subscribe('edge.create', function(response) { console.log("Here is the response %o", response); } ); AFAIK, "FB Like" is JavaScript addon (not PHP), but you could bind JS event to like button, that would send some AJAX data to your server, notifying it, about usage of Like button. Even thou, I'm not sure about my answer. You can subscribe