Posted by:
RealNub
(---.hsd1.ma.comcast.net)
<form name='...' action='page.php' method='post'> FORM</form>
<?php
echo $_POST['variable'];
?>
or you can use
extract($_POST); and instead of $_POST['var'] you can use $var it stripts all of that
also in forms with text boxes the stuff when you hit enter shows up on the same line,
use
$message = nl2br($_POST['message']);