我是一个相当新的写PHP和我有一个注册表格,我希望将信息发送到我的电子邮件,但我想我在mail.php中遗漏了一些信息,因为信息没有通过。
这是我的html5表单:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Register</title>
<link href="css/reset.css" rel="stylesheet" type="text/css">
<link href="css/register.css" rel="stylesheet" type="text/css">
</head>
<div id="container">
<section id="register">
<form action="mail.php" method="post" accept-charset="utf-8">
<h4>Your Jeep</h4>
<div class="form-field">
<fieldset>
<label>Year</label>
<input value="" placeholder="Year" type="text" name="year">
</fieldset>
</div>
<div class="form-field">
<fieldset>
<label>Color</label>
<input value="" placeholder="Color" type="text" name="color">
</fieldset>
</div>
<div class="form-field">
<fieldset>
<label>Class</label>
<input value="" placeholder="Stock, Modified, Highly Modified" type="text" name="class">
</fieldset>
</div>
<!--------------------
<div class="form-field">
<fieldset>
<label>Class</label>
<select class="form-field">
<option value="Select Class">Select Class</option>
<option value="Stock">Stock</option>
<option value="Modified">Modified</option>
<option value="Highly Modified">Highly Modified</option>
</select>
</fieldset>
</div>
------------------------->
<div class="form-field">
<fieldset>
<label>Last 4 digets of VIN</label>
<input value="" placeholder="Last 4 digets of VIN" type="text" name="vin">
</fieldset>
</div>
</form>
<form>
<h4>You</h4>
<div class="form-field">
<fieldset>
<label>Name</label>
<input value="" placeholder="Name" type="text" name="name">
</fieldset>
</div>
<div class="form-field">
<fieldset>
<label>Address</label>
<input value="" placeholder="Address" type="text" name="address">
</fieldset>
</div>
<div class="form-field">
<fieldset>
<label>City</label>
<input value="" placeholder="City" type="text" name="city">
</fieldset>
</div>
<div class="form-field">
<fieldset>
<label>State</label>
<input value="" placeholder="State" type="text" name="state">
</fieldset>
</div>
<div class="form-field">
<fieldset>
<label>Zip</label>
<input value="" placeholder="Zip" type="text" name="Zip">
</fieldset>
</div>
<div class="form-field">
<fieldset>
<label>Email</label>
<input value="" placeholder="Email" type="text" name="email">
</fieldset>
</div>
</form>
<form>
<div class="form-button">
<input type="submit" value="Send"><input type="reset" value="Clear">
</div>
</form>
</section>
</div>
<body>
</body>
</html>
这是我的mail.php:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Form</title>
</head>
<?php
$year= $_POST['year'];
$color= $_POST['color'];
$class= $_POST['class'];
$vin= $_POST['vin'];
$name= $_POST['name'];
$address= $_POST['address'];
$city= $_POST['city'];
$state= $_POST['state'];
$zip= $_POST['zip'];
$email= $_POST['email'];
$formcontent="From: $name \n From: $city";
$recipient = "mjadecole17@yahoo.com";
$subject = "JatB Registration";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
echo "Thank You!" . " -" . "<a href='index.html' style='text-decoration:none;color:#f15c25;'> Return Home</a>";
?>
<body>
</body>
</html>
答案 0 :(得分:0)
您缺少表单属性,主要是POST
方法:
<form action="" method="post">
它指定表单将由POST
发送,而不是GET
发送。当您使用$.POST
获取所有变量时,需要通过此方法发送表单。
您可以详细了解here。
此外,正如@Frits指出的那样,您的submit
按钮是另一种形式。您应该只有一个表单,其中包含您的所有字段以及提交按钮。
答案 1 :(得分:0)
您的提交按钮的格式不同!
您正在提交空表单。
您总共有三种表格。从mail.php
的实施来看,它们应该是相同的形式。
答案 2 :(得分:0)
首先,您的提交按钮是另一种形式。
其次,您没有正确结束评论标记(但浏览器会自动处理它)。
第三,mail()函数将所有内容发送到邮件服务器。因此,您需要访问邮件服务器才能使用PHP发送电子邮件。