Ver Mensaje Individual
  #5 (permalink)  
Antiguo 05/10/2009, 12:20
samu22
 
Fecha de Ingreso: abril-2008
Mensajes: 453
Antigüedad: 16 años, 1 mes
Puntos: 16
Respuesta: Validar solo letras en campo de texto

Código php:
Ver original
  1. $string = 'CESAR ARCE, ALONZO'; //devuelve ok
  2. $patron = '/^[a-zA-Z0-9, ]*$/';
  3. if(preg_match($patron,$string)){
  4.     echo 'ok';
  5. }