Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/03/2009, 14:37
Avatar de Ronruby
Ronruby
 
Fecha de Ingreso: julio-2008
Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 15 años, 9 meses
Puntos: 416
Respuesta: ¿Cómo puedo hacer para eliminar emails repetidos?

Es mas facil hacer:

Código PHP:
<?php
$file 
file("contacto.txt");
if(!
in_array($_POST['MailFrom'])) {
  
//Inserto el e-mail
} else {
  
//ya existe
}
?>