Website Contact Form

Associate
Joined
22 Nov 2005
Posts
1,331
I need to put a basic contact form on a website. I've done some searching and saw someone recommend wufoo. I've also seen jotform used. Are either of these any good or is it better to do my own?

I'm ok with the HTML but then I'll neen javascript validation and PHP to deal with the data, is that correct?

Can anyone point me in the direction of pre-made contact form JS & PHP files that I can use.

Thanks
 
If you're going to do it yourself then you'll need to use a server-side language such as PHP to store the message or send it as an e-mail.
 
The php file? Yeah, I've got that working but I've read it's a good idea to have javascript checking before submitting and then server side checking, or is that just overkill?

not overkill at all. I do on all my forms.

I know you've already chosen one, but have a butchers at my link, some of those forms have everything you've asked for packaged up.
 
The php file? Yeah, I've got that working but I've read it's a good idea to have javascript checking before submitting and then server side checking, or is that just overkill?

Javascript checking is common, and in more recent years considered to be required. It aides with user experience and form management.

Always make sure any form you ever create has server side validation regardless of JS.
 
Back
Top Bottom