<html>
<head>
<title>libroayuda.php</title>
</head>
<body>
<?php
// si quieres, puedes salvar esta información también a una base de datos
$lastname = $_post['lastname'];
$firstname = $_post['firstname'];
$year = $_post['year'];
$setting = $_post['setting'];
$gender = $_post['gender'];
$status = $_post['status'];
$other = $_post['other'];
$formsent = mail('
[email protected]', '¿cuál es el título de ese libro?', "petición de: $lastname $firstname\r\naño: $year\r\nsituacion(es): $setting\r\ngenero protagonista: $gender\r\nstatus libro: $status\r\notras caracteristicas identificadoras: $other", "from: $email\r\nbounce-to:
[email protected]");
if ($formsent) {
echo "<p>hola, $firstname. Hemos recibido tu petición de ayuda, intentaremos responder en las próximas 24 horas. ¡gracias por visitar librería online.com!";
} else {
echo "lo siento, hay un problema con tu formulario. Inténtalo de nuevo.";
}
?>
</body>
</html>