Page 1 of 1

Facebook content share without image!

Posted: Mon Dec 13, 2010 12:47 pm
by mrekko
Hello guys!

I have a little problem sharing content of my website in facebook. I can share the link and the title but i cant share some text or images!

The page in question is generated by this cycle:

Code: Select all

while( $linha = mysql_fetch_array($sql_noticia) ){
			echo '<ul class="noticias">
			<link rel="image_src" type="image/jpeg" href="http://www.mysite.pt//library/'.$linha['paththumb'].'" />
			<li><img src="library/destaques/'.$linha['path'].'" alt="imagem" /> </li>
			<li class="titulogrande">'.$linha['descricao'].'</li>
				<li class="texto">'.$linha['data'].'</li>					
				<li class="textobd">'.$linha['assunto'].'</li>	
			</ul>';

		}

		}
In manny forums people talked about these tag

<link rel="image_src" type="image/jpeg" href="http://www.mysite.pt//library/'.$linha['paththumb'].'" />

I tryed it with no results...

thank you guys!