2016-04-26 36 views
0

我正在網站上工作,代碼中的表單未處理。我能做些什麼來使其運行起來並付諸實施。這裏是表單代碼....用於通過電子郵件發送數據不工作的CSS表單

 <div class="form"; action="mail.php"; method="post"> 
     <input class="input-text" type="text" name="name" value="Your Name   *" onFocus="if(this.value==this.defaultValue)this.value='';"  onBlur="if(this.value=='')this.value=this.defaultValue;"> 
     <input class="input-text" type="text" name="email" value="Your E- mail *" onFocus="if(this.value==this.defaultValue)this.value='';" onBlur="if(this.value=='')this.value=this.defaultValue;"> 
     <textarea class="input-text text-area" name="message" cols="0" rows="0" onFocus="if(this.value==this.defaultValue)this.value='';" onBlur="if(this.value=='')this.value=this.defaultValue;">Your Message *</textarea> 
     <input class="input-btn" type="submit" value="send message"> 
     </div> 

這裏是我用來從窗體中獲取數據的PHP代碼。

<html> 
<body> 
<?php 
$errors = ''; 
$myemail = '[email protected]'; 
if(empty($_POST['name']) || 
empty($_POST['email']) || 
empty($_POST['message'])) 
{ 
$errors .= "\n Error: all fields are required"; 
} 
$name = $_POST['name']; 
$email_address = $_POST['email']; 
$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 = "Contact form submission: $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 'thank you' page 
header('Location: contact-form-thank-you.html'); 
} 
?> 

問題是,在表單中輸入數據後,它不會繼續進行。

+2

您必須有一個開始和結束窗體標記,如'

VipindasKS

回答

1

更改標記,以便它是<form>而不是<div>並刪除分號。

<form class="form" action="mail.php" method="post"> 
    ... 
</form> 
+0

解決了我的問題。非常感謝 :) –

相關問題