Hola FDW, ¿cómo puedo lograr hacer funcionar este buscador mediante un formulario con listas?.
Este es el algoritmo, tengo por supuesto un select con cada uno de estos nombres en el formulario: Provincia, Día y Mes.
Código:
//Contenido
$provincia = htmlspecialchars($_GET['Provincia']);
$dia = htmlspecialchars($_GET['Dia']);
$mes = htmlspecialchars($_GET['Mes']);
//Sentencia Mysql
$BusqSql = $server_link->query("SELECT ByENombre, ByEDireccion, ByEProv, ByEFecha
FROM webs
WHERE MATCH (ByENombre)
AGAINST ('$provincia')
UNION
SELECT ByENombre, ByEDireccion, ByEProv, ByEFecha
FROM webs
WHERE MATCH (ByEProv)
AGAINST ('$dia')
UNION
SELECT ByENombre, ByEDireccion, ByEProv, ByEFecha
FROM webs
WHERE MATCH (ByEFecha)
AGAINST ('$mes')");
El código actual, realmente no me está funcionando, no me entrega ningún resultado, cree la BD, con sus correspondientes campos y añadí unos 14 registros a modo de prueba.
Un saludo, espero que puedan ayudarme!