Hello everybody,
I have just created a short helper to create facebook like button dynamically for any content, by just giving-in the URL of the page. Hope this one also helps you like my other helpers
Helper function:
-
-
function facebook_like($url){
-
$formlink=‘<iframe src="http://www.facebook.com/plugins/like.php?href=’;
-
$formlink .= ‘;layout=button_count&show_faces=true&width=450&action=like&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"></iframe>’;
-
-
return $formlink;
-
}
-
}
-
Usage:
-
-
<?php
-
$url = current_url();
-
?>
-
Note:
As you can see the function requires you to use the codeigniter’s native URI helper.