I've a problem by generating a like button.
I want to put a like button on each page of my website. I haven't any problem to do it. But, i can like the button on my website and i can like posts on facebook linked with my website (by adding the URL of a page) too, with the same Facebook account ! if I do so, the button on my website will count 2 likes. So, it could be possible to have an infinite number of likes by creating an infinite number of posts and by liking them.
But, I want to create unique button like with only ONE like per facebook account : in order to see customers' preferences.
Btw, sorry for my english mistakes..
You 'll see below my html/PHP code :
<?php $monUrl = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; ?>
<iframe src="//www.facebook.com/plugins/like.php?href=<? echo $monUrl; ?>&send=true&layout=button_count&width=50&show_faces=false&font=arial&colorscheme=light&action=like&height=35&"
scrolling="no"
frameborder="0"
style="border:none; overflow:hidden; width:450px; height:35px;"
allowTransparency="true">
</iframe>
<head>. – cpilko Feb 8 at 20:52