2010-02-04 43 views
0

您好任何人都可以建议一个PHP表单的快速形式脚本? 我从telepro下面生成了一个,修改了html和电子邮件了一下,但我得到这个错误的复选框php来形成脚本?语法错误意外

解析错误:语法错误,意外的'='在/home/inn.co.uk/public /mailer.php线14

感谢您的帮助

问候 朱迪

 <form method="POST" action="contact.php"> 

<div class="form-field"> 
    <input type="text" name="Name" onFocus="if(this.value=='Name')this.value='';" value="Name"> 
</div> 
<div class="form-field"> 
    <input type="text" name="Telephone" onFocus="if(this.value=='Telephone')this.value='';" value="Telephone"> 
</div> 
<div class="form-field"> 
    <input type="text" name="Timetocall" onFocus="if(this.value=='Time to call')this.value='';" value="Time to call"> 
    </div> 
<div class="form-field"> 
       <ul class="tickboxes"> 
             <li>Do you agree to our<br/><a href="terms-and-conditions.html">Terms of Business </a><input type="checkbox" name="DoyouagreetoourTermsofBusiness?" value="Yes" /></li></ul></div> 




      <div class="button"> 
       <input type="image" src="images/submit.jpg" value="" name="submit"> 
      </div> 
    </form> 

<?php 
// Website Contact Form Generator 
// http://www.tele-pro.co.uk/scripts/contact_form/ 
// This script is free to use as long as you 
// retain the credit link 

// get posted data into local variables 
$EmailFrom = "[email protected]"; 
$EmailTo = "[email protected]"; 
$Subject = "New enquiry"; 
$Name = Trim(stripslashes($_POST['Name'])); 
$Telephone = Trim(stripslashes($_POST['Telephone'])); 
$Timetocall = Trim(stripslashes($_POST['Timetocall'])); 
$DoyouagreetoourTermsofBusiness? = Trim(stripslashes($_POST['DoyouagreetoourTermsofBusiness?'])); 

// validation 
$validationOK=true; 
if (Trim($Name)=="") $validationOK=false; 
if (Trim($Telephone)=="") $validationOK=false; 
if (Trim($Timetocall)=="") $validationOK=false; 
if (Trim($DoyouagreetoourTermsofBusiness?)=="") $validationOK=false; 
if (!$validationOK) { 
    print "<meta http-equiv=\"refresh\" content=\"0;URL=error.htm\">"; 
    exit; 
} 

// prepare email body text 
$Body = ""; 
$Body .= "Name: "; 
$Body .= $Name; 
$Body .= "\n"; 
$Body .= "Telephone: "; 
$Body .= $Telephone; 
$Body .= "\n"; 
$Body .= "Timetocall: "; 
$Body .= $Timetocall; 
$Body .= "\n"; 
$Body .= "DoyouagreetoourTermsofBusiness?: "; 
$Body .= $DoyouagreetoourTermsofBusiness?; 
$Body .= "\n"; 

// send email 
$success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>"); 

// redirect to success page 
if ($success){ 
    print "<meta http-equiv=\"refresh\" content=\"0;URL=ok.htm\">"; 
} 
else{ 
    print "<meta http-equiv=\"refresh\" content=\"0;URL=error.htm\">"; 
} 
?> 

回答

2

您在变量名称中使用问号。这是行不通的。

有关命名约定,请参阅PHP Manual on variables

通过

$DoyouagreetoourTermsofBusiness 

更换

$DoyouagreetoourTermsofBusiness? 

,它会正常工作。

+0

还要替换表单中的名称值。 – 2010-02-04 11:58:57

+0

感谢Adam,我做了你所说的一切,但是当我点击发送时,即使我勾选了复选框,我也会收到此消息 - 您必须同意我们的商业条款。请点击此处返回表格 – 2010-02-04 14:06:23

+0

您是否也将其从stripslashes()调用中删除? – 2010-02-04 15:00:08