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 am new to this site.

The reason I said, "Dynamic.." is because, I know how to create the like button, but that is for one page. But, I am building a news website and instead of manually entering the Facebook code on each news and article, I would like that to happen automatically on the new and dynamically-created pages so I won't have to put them each time I publish an Article on the page.

Usually my pages URL will be like www.site.com/articles.php?id=12

So the id, is the only thing it changes, so I don't know what to do after that.

share|improve this question

closed as not a real question by CBroe, Toon Krijthe, Baz, ЯegDwight, RichardTheKiwi Oct 1 '12 at 9:50

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 3 down vote accepted

You need to replace the URL in your embed code. like

<div class="fb-like" data-href="<?=$current_url?>" data-send="true" data-width="450" data-show-faces="true"></div>

All you need to replace $current_url variable with appropriate url

However, if you omit the the data-href it will use the current URL (XFBML version).

share|improve this answer

Welcome to stack overflow!

See http://developers.facebook.com/docs/reference/plugins/like/

Simply enter the URL of your page (http://www.site.com/articles.php?id=12) and click 'Get Code'. A popup with instructions will appear. Then, for your other pages, when you embed the code for the like button you simply need to change the 'href' parameter to be the URL of the article you are displaying.

share|improve this answer

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