03-11-2008, 04:27 PM
|
#4 (permalink)
|
|
The Acquainted
Join Date: Feb 2008
Posts: 119
Thanks: 17
|
PHP Code:
if ($_POST['submit']) { $name = $_POST['name']; $email = $_POST['email']; .... }
That's how I process them.
To send the thing to your email, just make a text, insert the post variables where needed and send that msg.
Check this code to how send mails: Gaming With PHP Blog Archive Send mails even to hotmail boxes
|
|
|
|