Necesito que cada campo sea requerido y no se envié el mail si no son llenado como tendría que hacer acá dejo el código!
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Mándanos tus comentarios</title>
</head>
<?
if (!$HTTP_POST_VARS){
?>
<form action="mail_m.php" method=post>
Nombre: <!--webbot bot="Validation" b-value-required="TRUE" -->
<input type="text" name="nombre" size="25">*<p>Apellido:
<!--webbot bot="Validation" b-value-required="TRUE" -->
<input type="text" name="apellido" size="20">*</p>
<p>C.I.: <select size="1" name="nac">
<option selected>V</option>
<option>E</option>
</select>.-
<!--webbot bot="Validation" s-data-type="Number" s-number-separators=".," b-value-required="TRUE" i-minimum-length="7" i-maximum-length="8" -->
<input type="text" name="ci" size="13" maxlength="8">*<br>
<input type=submit value="Enviar">
</p>
</form>
<?
}else{
//Estoy recibiendo el formulario, compongo el cuerpo
$cuerpo = "Formulario enviado\n";
$cuerpo .= "Nombre: " . $HTTP_POST_VARS["nombre"] . "\n";
$cuerpo .= "Apellido: " . $HTTP_POST_VARS["apellido"] . "\n";
$cuerpo .= "Nacionalidad: " . $HTTP_POST_VARS["nac"] . "\n";
$cuerpo .= "Cedula: " . $HTTP_POST_VARS["ci"] . "\n";
//mando el correo...
mail("[email protected]","Formulario recibido",$cuerpo);
//doy las gracias por el envío
echo "Gracias por rellenar el formulario. Se ha enviado correctamente.";
}
?>
</body>
</html>