I have this code when I submit a form:
<?php
$email = $_REQUEST['email'] ;
$name = $_REQUEST['name'] ;
mail( "Saamon@live.com", "Website Opt In Form Results",
$message, "From: $email" );
header( "Location: index.html" );
?>
On the header location part, how can I make a popup window appear instead of a new page?
Thanks