http://dev.mysql.com/doc/refman/5.0/...xt-search.html
A un principio lo vi facil hacer esta consulta:pq temgo varias opciones
Código php:
Ver original
SELECT * FROM jugadores Where (nombre LIKE '$nombre') OR (paterno LIKE '$paterno') OR (materno LIKE '$materno') OR (registro_fbf LIKE '$registro_fbf') OR (ci LIKE '$ci') OR (edad LIKE '$edad') OR (fecha_n LIKE '$fecha_n') OR (categoria LIKE '$categoria') OR (club LIKE '$club') OR (estado LIKE '$estado') OR (lugar LIKE '$lugar_n') OR (nacionalidad LIKE '$nacionalidad') ",$server_link);
Luego me diu cuenta que no es muy exacto pongo un dato concreto pero me salen 10 o 20 que nada tienen q ver entonces hice esto:
Código php:
Ver original
"SELECT *, MATCH ( id,nombre,paterno,materno,registro_fbf) AGAINST ('$nombre','$paterno','$materno','$registro_fbf') AS Score FROM jugadores WHERE MATCH (id,nombre,paterno,materno,registro_fbf) AGAINST ('$nombre','$paterno','$materno','registro_fbf' IN BOOLEAN MODE) ORDER BY id DESC",$server_link);
Pero me sale error, como puedo solucionar esto y ademas en el link que les di cuan es la mejor soluciona a mi problemas ??