Thread: Contact forms
Results 1 to 5 of 5
Related
-
Need help with my PHP pop-up contact form. Forum: PHP Forum
Replies: 0 -
Contact Box Help Forum: Myspace Forum
Replies: 1 -
php contact form Forum: PHP Forum
Replies: 13
-
09-19-2004, 11:41 AM #1
Contact forms
Hi
On my website http://www.motorsport-network.net on the left side, I have a button that says Contact us. I can make that lead to another page, but on that page, I would like to put in a form that emails me.
The forum should contain-
persons Name
Email
Subject
a box to write their coments
and a clickable button to submit their mail, and its emailed to me directly.
Anyone have a code, or know where I could get one to make this.
Thanks
Robert.
-
09-19-2004, 07:31 PM #2
There are code snippits for this throughout the forums, try the search above to find the most suitable.
Dave
-
09-19-2004, 08:57 PM #3
Originally Posted by RWD
For this you need to use Form . In HTML body you have to write something like this:
<BODY>
<FORM action=mailto:youremail@yahoo.com method=post>
<P>
Name: <INPUT type="text" name="name"><BR>
E-mail: <INPUT type="text" name="email"><BR>
Comments: <TEXTAREA name=comments rows=4 cols=36></TEXTAREA> <BR>
<INPUT type="submit" name="submit" value="Send"> </P>
</FORM>
</BODY>
The ACTION tag tells the browse where to send the information to. Here after malito you have to provide your email address.
I hope that solves your problem
-
09-20-2004, 07:25 AM #4
Thanks, thats the very thing I need.
-
09-30-2004, 08:22 PM #5