Ver Mensaje Individual
  #20 (permalink)  
Antiguo 23/10/2008, 15:44
samu22
 
Fecha de Ingreso: abril-2008
Mensajes: 453
Antigüedad: 16 años, 10 meses
Puntos: 16
Respuesta: un problemilla con echo

podrias usar javascript, o enviar algun dato por get.
por ejemplo
Código:
<input type="text" name="email" id='Mail'>
<input type="text" name="repmail" onBlur="checkDatoRep('Mail')" >
Código:
//en javascript
function checkDatoRep(idC){
 elementRep = document.getElementByID(idC);
 valor = elementRep.value;
 
thisElement = document.getElementByID('mail2');
valor2 = thisElement.value;

if (valor != valor2){
  alert('los datos no coinciden');
// podrias usar innerHtml en 
   thisElement.innerHtml = 'los datos no coinciden';
}

}