Buenas tardes
Quisiera ayuda sobre este tema de noticias relacionadas: Alguien que me pueda ayudar o completar es que no me funciona.
Gracias
<?php
$Articulos_rel= mysql_query("SELECT * FROM noticias WHERE MATCH (titulo) AGAINST (".$get_date['noticia'].") ORDER BY relevancia; ".$get_date['titulo']."%'");
echo "
<table width=80% align=left>
<tr>
<td class='titulos_tablas' width='50%' align='left' style='font-size:12px;'> Articulos Relacionados</td>
</tr>
";
while ($row = mysql_fetch_array($Articulos_rel))
{
$get_date= mysql_fetch_array(mysql_query ("SELECT DATE_FORMAT(fecharegistro, '%d/%m') AS fecharegistroformat, DATE_FORMAT(fecharegistro, '%Y') AS fecharegistroformat2 FROM noticias WHERE titulo='".$row['titulo']."'"));
echo "
<tr> <td style='padding-top:2px; padding-bottom:2px; padding-left:2px; border-bottom: solid 1px #9C9C9C;' class='c'>
<b>".$get_date['fechaformat']."</b> > <a href='index.php?titulo=".$nombre."&a=noticia=".$ro w['titulo']."' style='font-size:11px;'>".$row['titulo_noticia']."</a>
</td></tr>
";
}
?>