Reputation: 11780
I have created a button in my website that will share the page. But on clicking the link Facebook is showing "file not found". Facebook debugger in showing no problem
URL i want to shar: http://www.huzup.com/subcategory.php?subcategory=Mollywood&highlight=www.mohanlal.com
Link on the button to share: http://www.facebook.com/sharer.php?u=http://www.huzup.com/subcategory.php?subcategory=Mollywood&highlight=www.mohanlal.com
Upvotes: 2
Views: 1388
Reputation: 115
Here it is:
<?php
echo '<a href="http://www.facebook.com/sharer.php?u='.urlencode('http://www.huzup.com/subcategory.php?subcategory=Mollywood&highlight=www.mohanlal.com').'">share on Facebook</a>';
?>
Upvotes: 1