Results page in other window
PHP Snippet 1:
<form method="post" action="..." target="_blank">
...
PHP Snippet 2:
<form method="post" action="..." onsubmit="yourFunction()">
PHP Snippet 3:
<form method="post" action"thepagetodisplay.php">
<input type="text" name="title" id="title">
<input type="submit" name"send">
</form>
PHP Snippet 4:
extract($_POST);
echo $title;