I think I almost have it. I have the php script for the mail function done but how do I make it go to the external webpage. I have an action prompt inside my normal html coding that does it. Am I able to have 2 action prompts inside html?
Here is what I have so far for my HTML, and then lower I will include the PHP:
<FORM ACTION="http://derek.talkfusionservice.com"
METHOD="POST">
<center>Your Name</center><span></span><center><INPUT NAME="FName" /></center><center>Email Address</center><span></span><center><input type="text" /></center>
<center><input type=Submit value="GO" /></center>
</form>
<?php
$to = 'nobody@example.com';
$subject = 'Talk Fusion Info';
$message = 'I would like information on the products';
$headers = 'From: derek.dimmick@gmail.com' . "\r\n" .
'Reply-To: derek.dimmick@gmail.com' . "\r\n" .
mail($to, $subject, $message, $headers);
?>