Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/09/2007, 23:15
braiank
 
Fecha de Ingreso: diciembre-2005
Mensajes: 249
Antigüedad: 19 años, 2 meses
Puntos: 0
Problema con WHERE MATCH

Código PHP:
  $noticias_rel=mysql_query("SELECT * FROM noticias WHERE MATCH(titulo_noticia, pie_noticia) AGAINST('Prueba') ORDER BY id_noticia DESC LIMIT 3");
   while (
$row2 mysql_fetch_array($noticias_rel))
  {
   
$titulo=substr($row2['titulo_noticia'], 045);
   echo 
'
    <a class="linkd" href="index.php?a=noticia&id='
.$row2['id_noticia'].'">'.$titulo.'...</a><br> 
   '
;
  } 
y no me devuelve nada y hay como 5 noticias mas que se llaman Prueba Noticia #1 por ejemplo.