Contact Form

Status
Not open for further replies.

ZeptOr

New Member
Messages
442
Reaction score
0
Points
0
I want to have a contact form for my website with the following fields:

A name textfield
A email textfield
A message textbox
and 4 radio buttons

Then I want to have a button that would send the information in the above to my email address.

I have no knowledge of coding outside of html and css. Is there a website that has a tutorial for this? Or does anyone have the code already? Or, if its simple, does anyone wanna help me write the code?
 

mattura

Member
Messages
570
Reaction score
2
Points
18
indeed. Assuming you're doing it in php, it's quite easy, using:
mail($toAddress, $subject, $body, $headers)
though you can get by without using $headers
You could put the name and radio button data in the $body
 
Status
Not open for further replies.
Top