Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello i have a problem with sharing image of my articles and petitions on facebook, it doesnt display the good image but in the facebook debug tool is ok. The problem is when i post the link on the facebook it'll insert 2 thumbnails beside the correct image and the correct image is not the first one. Here is the link with an example: http://www.jednej.cz/petition.php?id=1897

Here is my php code:

<?php

            $id=(isset($_GET['id']))? $_GET['id'] : '';
            $id = PREG_REPLACE("/[^0-9a-zA-Z.-@_]/i", '', $id);

            if($cat>0)
            {
                if($cat==1)
                {
                    $query = "select * from petition where id_petition='$id'";
                    $result = mysql_query($query)
                        or die("query failed: " . mysql_error());
                    while ($row = mysql_fetch_array($result))
                    {
                        $idz= $row['id_petition'];
                        $name=$row['name'];
                        $name1='Petice: '.$name.'';
                        $description=$row['description'];
                        $description=strip_tags($description);
                        $filename=$row['picture'];
                        if($filename!='')
                          $pic='petitions/'.$idz.'/'.$filename.'';
                        else
                            $pic='nopicture.jpg';
                        $description = substr($description, 0, 153);

                    }

                    echo'
                <meta property="og:title" content="',$name1,'" >
                <meta property="og:image" content="http://www.jednej.cz/images/'.$pic.'">

            <meta property="og:description" content="',$description,'">

                    <title>Jednej.cz - Petice: '.$name.'</title>
                    <meta name="description" CONTENT="Petice: '.$name.'-'.$description.'">
            ';
                }



            }
            ?>
share|improve this question
no one can help me?:( – Sima Cristian Alexandru Mar 3 at 18:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.