I'm trying to validate the email field of a form that uses php to send form information to a set of emails. I'm using Javascript to validate the email and it is working.
The problem is, even after the validation returns false the form still processes the information and sends the emails, i would love some guidance as I can't find the error i'm making.
Here's the HTML code i'm using for the form:
<form id="formulario-submit" onsubmit="return Validacion();" action="procesarsolicitud.php" method="POST">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<input type="text" value="Nombre*" id="nombre" name="nombre" onclick='this.value = "";'>
</td>
</tr>
<tr>
<td>
<input type="text" value="Apellido*" id="apellido" name="apellido" onclick='this.value = "";'>
</td>
</tr>
<tr>
<td>
<!--<input type="submit" value="Enviar" id="enviar" alt="enviar">-->
<button name="enviar" value="Submit" type="submit" id="enviar" alt="enviar" width="100">
Here's the JS code i'm using to validate the email:
<script>
function Validacion()
{
var x=document.forms["formulario-submit"]["email"].value;
var arroba=x.indexOf("@");
var punto=x.lastIndexOf(".");
if (arroba<1 || punto<arroba+2 || punto+2>=x.length)
{
alert("Not a valid Email.");
email.focus();
return false;
}
}
</script>
Here's the PHP code (on a separate PHP file called procesarsolicitud.php) i'm using to process the data and send the email:
$nombre = $_POST['nombre'];
$apellido = $_POST['apellido'];
$email = $_POST['email'];
$message = '
<html>
<head>
<title></title>
</head>
<body>
<h3>Form Data::</h3>
<tr>
<td width="200"><b>Nombre:</b></td>
<td>'.$nombre.'</td>
</tr>
<tr>
<td width="200"><b>Apellido:</b></td>
<td>'.$apellido.'</td>
</tr>
<tr>
<td width="200"><b>Email:</b></td>
<td>'.$email.'</td>
</tr>
<tr>
</tr>
</table><br />
</body>
</html>
';
// multiple recipients
$to='email1@email.com,email2@email.com';
// subject
$subject = ' Email Subject';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=utf-8' . "\r\n".
'From: Email <info@email.com>' . "\r\n";
echo "MessageExample";
// Mail it
mail($to, $subject, $message, $headers);
Thanks in advance.
<input type=email>and a browser shim for backwards support rather than custom Javascript code for verification. – mario Dec 12 '11 at 16:20