I implemented a "like-button" like this:
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2F<?php print urlencode($myDomain);?>&layout=box_count&show_faces=true&action=like&colorscheme=light&width=100&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:80px;"></iframe>
Assume I have 10 likes so far. When the user clicks this button, the count rises to 11 and the "like" becomes gray - but after 2-3 seconds, the count gets back to 10 and the "like"-button is enabled again.
The "like" was counted anyway, because it appears on the users facebook-status-page and if the user reloads the page, the button is and stays gray and the count remains 11. But it's a bit confusing why you have to reload the page to see that the like was valid - any idea what could be wrong?