Hey Everyone, I'm trying to get the URL to use on my FBshare button. I want to be able to the full address like and past it like the example below. URL: http://www.example.com/keyword-keyword-keyword <iframe src="http://www.facebook.com/plugins/like.php?href=http://www.example.com/keyword-keyword-keyword&layout=standard&show_faces=false&width=450&action=like&colorscheme=light&height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:35px;" allowTransparency="true"></iframe> HTML: Any help would be great thanks! Chris
That Right BTW: OP heres it <?php <?php $full_url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; ?> <iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo $full_url; ?>&layout=standard&show_faces=false&width=450&action=like&colorscheme=light&height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:35px;" allowTransparency="true"></iframe> PHP: