Código HTML:
Ver original
<form action="enviarc.php" method="post" name="form1" id="form1"> <table width="514" border="0" align="center" cellpadding="4" cellspacing="1"> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> <td valign="top" class="texto Estilo9">SI <input name="cliente" type="radio" value="Si" /> NO <input name="cliente" type="radio" value="No" /> <br /> Al ser SI, cuando </tr> <tr> </tr> <tr> </tr> <tr> <input type="submit" name="Submit" value="Enviar" /> </tr> </table> </form>
este es el php
enviarc.php
Código PHP:
<?php
$mail='[email protected]' . ', ';
$mail .='[email protected]';
$nombre = $_POST['nombre'];
$edad = $_POST['edad'];
$lugar = $_POST['lugar'];
$enfermedades = $_POST['enfermedades'];
$medico = $_POST['medico'];
$hospital = $_POST['hospital'];
$enfermedad = $_POST['enfermedad'];
$email = $_POST['email'];
$telefono = $_POST['telefono'];
$cotizar = $_POST['cotizar'];
$detalle = $_POST['detelle'];
$cliente = $_POST['cliente'];
$cuando = $_POST['cuando'];
$que = $_POST['que'];
$cuando = $_POST['cuando'];
$aseguradora = $_POST['aseguradora'];
$observaciones = $_POST['observaciones'];
$thank="index.html";
$message = "
nombre:".$nombre."
telefono:".$telefono."
email:".$email."
mensaje:".$mensaje."
edad: ".$edad."
lugar: ".$lugar."
enfermadades: ".$enfermedades."
Cotizar: ".$cotizar."
detalle: ".$detalle."
cliente: ".$cliente."
cuando: ".$cuando."
aseguradora:".$aseguradora."
observaciones: ".$observaciones."";
?>
ayuda porfa
Gracias