Here is the article godaddy sent me. you can also find it at http://help.godaddy.com:80/article.php?article_id=510&
Im not sure where to put this information
Using the PHP Form-Mailer
Print this ArticleLast Updated: November 12, 2007 10:22 AM
To use the PHP form-mailer, create a Web form in HTML that links to our PHP script, located in the root directory of your hosting account, and upload it to your hosting account.
Remember to specify the email address you want to use with the form-mailer in your account manager. For more information, see Specifying an Email Address for the PHP Form-Mailer.
To Use the PHP Form-Mailer
Create your Web form as normal and assign unique names to your form items.
NOTE: Keep in mind that our form-mailer script will sort the names of your form items alphabetically when it composes the email message. This is the order of precedence: uppercase letters, lowercase letters, numbers.
For the form action line, enter gdform.php. For example:
<form action="gdform.php" method="post">
Set the form method to "post."
In addition to the fields you create in your form, there are three special fields that you can use: subject, redirect, and email.
Subject. Controls the subject line in the form email.
Redirect. Controls the page that your visitors will see after they submit the form.
Email. Controls the return address for the form email.
For example:
<form action="gdform.php" method="post">
<input type="hidden" name="subject" value="Form Submission" />
<input type="hidden" name="redirect" value="thankyou.html" />
<p>First Name:<input type="text" name="FirstName" /></p>
<p>Last Name:<input type="text" name="LastName" /></p>
<p>E-Mail:<input type="text" name="email" /></p>
<p>Comments:<textarea name="comments" cols="40" rows="10">
Type comments here.</textarea></p>
<input type="submit" name="submit" value="submit"/>
</form>
Save and upload your file to your hosting account.