Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/08/2007, 12:02
the_josz
 
Fecha de Ingreso: abril-2006
Mensajes: 43
Antigüedad: 18 años
Puntos: 1
Re: Como hago este buscador?

para los caracteres especiales usá esta funsión

/*funsion pa borrar caracteres especiales*/

function borra_caracteres($texto) {
$texto = trim($texto) ;
$texto = htmlspecialchars($texto) ;
return $texto ;
}

espero que te sirva