Código HTML:
Ver original
<script type="text/javascript"> function MM_validateForm() { //v4.0 if (document.getElementById){ var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments; for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=document.getElementById(args[i]); if (val) { nm=val.name; if ((val=val.value)!="") { if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@'); if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n'; } else if (test!='R') { num = parseFloat(val); if (isNaN(val)) errors+='- '+nm+' must contain a number.\n'; if (test.indexOf('inRange') != -1) { p=test.indexOf(':'); min=test.substring(8,p); max=test.substring(p+1); if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n'; } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' es requerido.\n'; } } if (errors) alert('ha ocurrido un error:\n'+errors); document.MM_returnValue = (errors == ''); } } </script> </head> <body style="background-color:#00cc66; color: #FFF;"> <table width="455" height="449" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC" bgcolor="#CCCCCC"> <tr> <th width="451" height="447" scope="col">EL CONSEGUIDOR <table width="412" cellspacing="0" align="center" bgcolor="#009966"> <tr> <p>Nombre: <input name="nombre" type="text" id="nombre" /> </p> <p> E-mail: <input name="mail" type="text" id="mail" onblur="MM_validateForm('mail','','RisEmail');return document.MM_returnValue" /> </p> <p> Poblacion : <input type="text" name="poblacion" /> </p> <p>Telefono: <input type="text" name="telefono" /> </p> mensaje<br /> </label> <input type="submit" onclick="MM_validateForm('mail','','RisEmail');MM_validateForm('nombre','','R','mail','','RisEmail');return document.MM_returnValue"> </p> </form> <div align="left">* Campo obligatorio </input> </tr> </table> </th> </tr> </table> </body> </html>
y aqui el codigo PHP
Código PHP:
Ver original
<?php echo " Nombre:". $_POST['nombre']; echo "<br>"; echo "E-mail:". $_POST['mail']; echo "<br>"; echo "Poblacion:".$_POST['poblacion']; echo "<br>"; echo "Telefono:".$_POST['telefono']; echo "<br>"; echo "Mensaje:".$_POST['mensaje']; $header = 'From: ' . $mail . " \r\n"; $header .= "Mime-Version: 1.0 \r\n"; $header .= "Content-Type: text/plain"; $mensaje = "Este mensaje fue enviado por: " . $_POST['nombre'] . ", " . $empresa . " \r\n"; $mensaje .= "Su e-mail es: " . $_POST['mail'] . " \r\n"; $mensaje .= "Telefono: " . $_POST['telefono'] . " \r\n"; $mensaje .= "Poblacion: " . $_POST['poblacion'] . " \r\n"; $mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n"; $asunto = 'Contacto desde el conseguidor'; echo 'mensaje enviado , muchas gracias'; ?>