I use this API: http://developers.facebook.com/docs/share/ At the bottom of the page they have mentioned a way to create our own button.
So my code is like this:
<body>
<?php
function encodeURIComponent($str) {
$revert = array('%21' => '!', '%2A' => '*', '%27' => "'", '%28' => '(', '%29' => ')');
return strtr(rawurlencode($str), $revert);
}
?>
<a href="http://www.facebook.com/sharer.php?u=<?php echo encodeURIComponent('http://www.google.com'); ?>&t=<?php echo encodeURIComponent('It is the google website'); ?>">Share this2</a>
</body>
But it is not working properly! And it always displays the page title as the title in the share dialog!