I'm doing:

$fb = "http://www.facebook.com/sharer.php?t=".$title."&u=".$url;

That line is inside a while loop getting results from database. $url is always the same one but $title changes depending on the row.

Now I build the links and when I click them, they always show in my Wall the

<meta name="title" content=''>

text from my main page and not the $title text.

What can I do to fix this and share the text contained in $title?

Here the code I'm trying with og. After hitting the link the share text in my Wall is "Google" instead of what is in my variables:

<?php
$tt = "Some text in the meta";
    $url_p = "http://www.google.com";
        $url = urlencode($url_p);
        $text = "Text I want to show";
        $title = urlencode($text);
$fb = "http://www.facebook.com/sharer.php?t=".$title."&u=".$url;
?>
<meta property="og:title" content="<?php echo $tt; ?>"/>

<a href="<?php echo $fb; ?>">share link</a>
link|improve this question

1  
possible duplicate of facebook share, title not shared – ifaour Aug 5 '11 at 11:35
Check my answer in the above question. – ifaour Aug 5 '11 at 11:36
I've edited my initial post, please see the code using the Google example. Am I aproaching it all right? Thanks again – user712027 Aug 8 '11 at 8:24
feedback

3 Answers

This isn't currently possible via the sharer API if your url is 'always the same' and please include any relevant code since I cannot see how your, 'ine is inside a while loop getting results from database'.

link|improve this answer
I've added a random number at the end of the url so it is different everytime: mypage.com/folder/index.php?1451988335 being 1451988335 the number that changes but no advance :( – user712027 Aug 5 '11 at 9:46
feedback

How are you generating your meta tags? Are your trying to follow the open graph protocol? If so, your 'name' should be 'og:title'.

link|improve this answer
1  
I have my main's page meta tag, just one. That's where the sharer is taking the text from. The url links a perfecly formed: – user712027 Aug 5 '11 at 9:23
www.facebook.com/sharer/sharer.php?t=Text+from+database+belonging+to+row+id+1&u=‌​http%3A%2F%2Fmypage.com%2folder – user712027 Aug 5 '11 at 9:23
but the sharer don't show in my Wall "Text from database belonging to row id 1" it shows what I have in my main's page meta tag. I'll try changing the url into a dynamic one also. – user712027 Aug 5 '11 at 9:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.