Ok, I've attached a movie and a php script. There's a couple things you need to do so listen carefully. First of all, you need to edit the php. Unzip the zip and open the php in NOTEPAD (very important). It's going to look like this...
PHP Code:
<?php
$to = "[email protected]";
$subject = "Form";
$body = $_POST['Userinput'];
if (mail($to, $subject, $body)) {
echo "&complete=Form sent!";
} else {
echo "&complete=Sorry, can't send form at this moment. Please try again later.";
}
?>
See this part, $to = "[email protected]"; , change it to your email then click save as, mail.php (make sure you include the .php).
If your using AOL, AOL and some other web mail will send php sent mail into the spam folder, so check there and report it as "this is not spam" or something.