是否有一种快速简便的方法使这个form.php代码在提交后关闭窗口而不是重定向?如果无法做到这一点,我可以处理重定向,但是想要关闭窗口,因为原始窗体是在新窗口中打开的。代码如下:
<?php
if (!empty($_POST)) {
// Used for later to determine result
$success = $error = false;
// Object syntax looks better and is easier to use than arrays to me
$post = new stdClass;
// Usually there would be much more validation and filtering, but this
// will work for now.
foreach ($_POST as $key => $val)
$post->$key = trim(strip_tags($_POST[$key]));
// Check for blank fields
if (empty($post->First) OR empty($post->Last) OR empty($post->Email))
$error = true;
else {
// Get this directory, to include other files from
$dir = dirname(__FILE__);
// Get the contents of the HTML email into a variable for later
ob_start();
require_once($dir.'/html.php');
$html_message = ob_get_contents();
ob_end_clean();
// Load the SwiftMailer files
require_once($dir.'/swift/swift_required.php');
$mailer = new Swift_Mailer(new Swift_MailTransport()); // Create new instance of SwiftMailer
$message = Swift_Message::newInstance()
->setSubject('Hospitality Recycling Program Calculator Results') // Message subject
->setTo(array('bsmith@cleantheworld.org', $post->Email =>$post-> First )) // Array of people to send
->setFrom(array('bsmith@cleantheworld.org' => 'Clean the World')) // From:
->setBody($html_message, 'text/html');
// Send the email, and show user message
if ($mailer->send($message))
$success = true;
else
$error = true;
}
}
header("location: http://www.cleantheworld.org/newpartner.asp");
?>
答案 0 :(得分:0)
我同意@jeroen更好的解决方案是使用AJAX,但你可以在重定向的头部输出一些javascript来关闭页面。我再次建议不要将其作为问题的良好解决方案,但只要在用户浏览器中启用了javascript,它就会起作用。
<script type="text/javascript>
self.close();
</script>