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.'">
';
}
}
?>