Facebook content share without image!

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
mrekko
Forum Newbie
Posts: 6
Joined: Fri Sep 24, 2010 6:37 am

Facebook content share without image!

Post 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!
Post Reply