为什么我的联系表格只有一部分通过>;


Why does only part of my contact form come through >

我的联系人表单似乎只发送了部分信息。

我看不出设置的任何部分有什么不同,但系统既不发送电话号码,也不发送手机号码。

以我的形式

<form method="POST" name="contactform" action="changeofaddressfour.php"> 
<p>
<label for='name'>Your Name:</label> <br>
<input type="text" name="name">
 </p>
 <p>
<label for='email'>Email Address:</label> <br>
<input type="text" name="email"> <br>
 </p>
 <p>
 <label for='phone'>Telephone Number:</label> <br>
 <input type="text" name="phone"> <br>
</p>
 <p>
<label for='mobile'>Mobile Number:</label> <br>
<input type="text" name="mobile"> <br>
 </p>
 <p>
<label for='message'>New Address:</label> <br>
<textarea name="message"></textarea>
 </p>
<input type="submit" value="Submit"><br>
</form>

在另一页我有

  <?php
  $errors = '';
  $myemail = 'antonylambert@c5d.co.uk';//<-----Put Your email address here.
  if(empty($_POST['name']) || empty($_POST['email']) || empty($_POST['message'])) {
   $errors .= "'n Error: all fields are required";
    }
 $name = $_POST['name'];
 $email_address = $_POST['email'];
 $telephone_number = $_POST['phone'];
 $mobile_number = $_POST['mobile'];
   $message = $_POST['message'];
if (!preg_match("/^[_a-z0-9-]+('.[_a-z0-9-]+)*@[a-z0-9-]+('.[a-z0-9-]+)*('.[a-z]        {2,3})$/i", $email_address)) {
   $errors .= "'n Error: Invalid email address";
 }
 if (empty($errors)) {
 $to = $myemail;
 $email_subject = "Change of Details: $name";
 $email_body = "You have received a new message. "."Here are the details:'n Name: $name      'n Email: $email_address 'n Message 'n $message";
$headers = "From: $myemail'n";
 $headers .= "Reply-To: $email_address";
mail($to,$email_subject,$email_body,$headers);
 //redirect to the 'ackofdetails' page
 header('Location: ackofdetailsfour.php');
exit();
 }
echo nl2br($errors); ?>

更改$email_body = "You have received a new message. "."Here are the details:'n Name: $name 'n Email: $email_address 'n Message 'n $message";

$email_body = "You have received a new message. "."Here are the details:'n Name: $name 'n Email: $email_address 'n Telephone Number: $telephone_number 'n Mobile Number: $mobile_number 'n Message 'n $message";