Ver Mensaje Individual
  #13 (permalink)  
Antiguo 03/09/2008, 06:12
ilie
 
Fecha de Ingreso: agosto-2008
Mensajes: 218
Antigüedad: 15 años, 9 meses
Puntos: 7
Respuesta: Necesito vuestros sabios consejos....a modo de reto!

comprueba por separado cada una de las acciones:

Cita:
$where = array();


if( $provincia != 0 )
{
$where[] = "provincia='$provincia'";
}

print_r(where);

if( $categoria != 0 )
{
$where[] = "categoria ='$categoria'";
}
print_r(where);
if( !empty($where) )
{
$where_sql = implode(' AND ', $where);
}
echo $whrere_sql;