Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/06/2011, 06:59
Avatar de NUCKLEAR
NUCKLEAR
Moderador radioactivo
 
Fecha de Ingreso: octubre-2005
Ubicación: Cordoba-Argentina
Mensajes: 5.688
Antigüedad: 19 años
Puntos: 890
Respuesta: Dudas con la validación alfabética

Voto por el callback, agrega a tu regex las letras que quieres que se admitan:

Código PHP:
Ver original
  1. function validate_char($str)
  2.     {
  3.         if ( ! preg_match("/^([a-zñÑáéíóú])+$/i", $str)){
  4.               $this->form_validation->set_message('validate_char', 'Char not permitted');
  5.               return FALSE;
  6.           } else{
  7.             return TRUE;           
  8.             }
  9.          
  10.     }
__________________
Drupal Argentina