Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/12/2009, 05:51
MiguelFT
 
Fecha de Ingreso: julio-2009
Mensajes: 157
Antigüedad: 14 años, 9 meses
Puntos: 2
Respuesta: He probado todo. Validad EMAIL

He puesto:

Código:
//En blanco
if(empty($email)) {
        die("Espacio en Blanco");
    }
function checkEmail($email){
    $reg = "#^(((([a-z\d][\.\-\+_]?)*)[a-z0-9])+)\@(((([a-z\d][\.\-_]?){0,62})[a-z\d])+)\.([a-z\d]{2,6})$#i";
    return preg_match($reg, $email);   
}
y nanai