我为我的网站创建了一个联系表。当我按下发送按钮时,表单会转到应有的感谢页面。当感谢页面显示 url 更改并添加文件夹 /info/ 时。见下文:
http://www.projectrefresh.net/info/thankyou.html
发生这种情况后,所有页面都被破坏,因为 /info/ 已添加且无法识别。
联系表格代码:
<form name="contact" method="POST" action="enquiryForm.php">
<p><b>Name</b><br>
</tr>
<tr>
<input type="text" name="Name" size=40>
</tr>
<tr>
<p><b>Your Email</b><br>
</tr>
<tr>
<input type="text" name="email" size=40>
</tr>
<tr>
<p><b>Company</b><br>
</tr>
<tr>
<input type="text" name="Company" size=40>
</tr>
<tr>
<p><b>Subject</b><br>
</tr>
<tr>
<input type="text" name="subject" size=40>
</tr>
<tr>
<p><b>Message</b><br>
</tr>
<tr>
<textarea cols=40 rows=10 name="message"></textarea>
</tr>
<tr>
<p><input type="submit" value=" Send ">
</tr>
</form>
</div>
PHP 脚本:
<?php
$to="info@projectrefresh.net"; // what email address do you wish the email to be sent to?
$subject="Enquiry from website"; // what subject do you want the email to have
$sendto="thankyou.html"; // where do you want the visitor to be sent to afterwards?
//
// This is an UNSUPPORTED web form to email PHP script for usage by DiYhost.co.uk customers
//
$message = "This message has been sent from ".$_SERVER['HTTP_HOST']."\n\n\n";
while(list($var, $val)=each($HTTP_POST_VARS)){ // Get all variables
$message .= "[".$var."]: ".$val."\n\n"; // build the message body
}
$message .= "\n\nThe person's IP address who sent this email is: ".$_SERVER['REMOTE_ADDR'];
// see http://www.php.net/manual/en/function.mail.php
mail($to, $subject, $message,
"From: webmaster@".$_SERVER['SERVER_NAME']."\r\n"
."Reply-To: webmaster@".$_SERVER['SERVER_NAME']."\r\n"
."X-Mailer: PHP/" . phpversion());
// see http://www.php.net/manual/en/function.header.php
header("Location: http://".$_SERVER['HTTP_HOST']
.dirname($_SERVER['PHP_SELF'])
."/".$sendto);
?>