I have a simple FB app (Landing page) and i have a "Share this with your friends" option on it.
Here is the code:
$title=urlencode('INMORIA');
$url=urlencode('http://www.facebook.com/INMORIA');
$summary=urlencode('Hey! I have just found this incredible band! Check them out!.');
$image=urlencode('images/logga.png');
?>
<a onClick="window.open('http://www.facebook.com/sharer.php?s=100&p[title]=<?php echo $title;?>&p[summary]=<?php echo $summary;?>&p[url]=<?php echo $url; ?>&&p[images][0]=<?php echo $image;?>', 'sharer', 'toolbar=0,status=0,width=548,height=325');" target="_parent" href="javascript: void(0)">
SHARE THIS WITH YOUR FRIENDS
</a>
Is it some way that i can see who have clicked and shared my content?
Maybe Google analytics or does Facebook have something i can use?
The reason i ask is that i want to have a contest on my page and i want to give those who share my page a price. Like a free CD, T-shirt or something.
Or is it some other way to do this? I know that i can upload a photo on my page and see who shared the photo but i want that pop-up with the description and stuff to be the object that is shared.

