hello,
i'm using this script to get an email from a html form:
<?php
$subject = $REQUEST['subject'];
$name = $REQUEST['name'];
$email = $REQUEST['email'];
$comments = $REQUEST['comments'];
$confirmsendpage = "sent.html";
$msg=
"Name: " . $name ."\r\n" .
"Email: " . $email ."\r\n" .
"Comments: " . $comments ."\r\n" ;
mail("mymail@mailserver.com",$subject, $msg);
header("Location: $confirmsendpage");
?>
now i'd like to remove the confirmation page and just close that window after sending email
thanx