On my straight php website (no wordpress or frameworks), I have a while loop outputting records from my database. For each record, Im rendering a facebook like button so that a user can like each individual post.
After much stupidity, I got the like button to work. This is the code in use:
echo ' <iframe src="http://www.facebook.com/plugins/like.php?href=http://www.finespunmusic.com/ahole/comments_head.php?id='.$myid. '&layout=standard&show_faces=true&width=450&action=like&colorscheme=light&height=80&appId=273343902794754"
scrolling="no" frameborder="0"
style="border:none; overflow:hidden; width:300px; height:40px;"
allowTransparency="true">
</iframe>'
as you can see, pretty straight forward.
So when i click the button and go to my facebook pages activity log (where I can see activity that ive made on facebook - big button at the top of your profile) - i can see that i liked the page, the page title and my little image icon as defined in my meta tags
It works fine, FOR EVERY POST EXCEPT THE FIRST ONE.
There is nothing funky in my database causing this either, as you can see the only thing the iframe is aware of from my DB is the ID.
To show further example, when i mouseover the link i liked in the activity log on facebook, it shows me 2 diff URL's:
First Post Liked
result on facebook :Untitled Document
copied link- http://www.mysite.com/dir/comments_head.php?id=21
Second Post Liked
result on facebook :My Site Correct Title
copied link- http://www.mysite.com/dir/comments_head.php?id=20&fb_action_ids=112088945634256&fb_action_types=og.likes&fb_source=other_multiline&action_object_map=%7B%22112088945634256%22%3A475759745792719%7D&action_type_map=%7B%22112088945634256%22%3A%22og.likes%22%7D&action_ref_map=%5B%5D
Does anyone have any darn clue why that might be happening? the same code is looping yet I get one different result...
Looking forward to any insight, thanks!
http://www.facebook.com/plugins/like.php?href='.urlencode('http://www.finespunmusic.com/ahole/comments_head.php?id='.$myid). '&layout=standard– datasage Jan 11 at 20:35