Hi-
How are the form's responses being processed? If they're being mailed to you, are you maybe using formmail? (That's what I'm using - seems like it's commonly available on hosting plans out there. I'm not well versed on what all the other possibilities might be, but I can show you what I'm doing. The results come through pretty clean.)
One form I have is at http://www.hogritude.com/contact.html
If you look at the source code, each field has a name associated with it, like
<P><B>How did you find us?</B>
<P><input type=text name="find" size=85>
If someone puts "searched google for pigs", then that part of the email I recieve says
find: searched google for pigs
So it works well. I've used this code on a couple different servers, and a few of the details had to be changed when I switched from one to another. So you may want to look over the documentation your host provides. In particular, the path for 'action' had to be tweaked a bit.
<FORM METHOD="post" ACTION="/cgi-sys/FormMail.cgi"> is just what I had to do for this particular host. depends on how they have their files organized, it seems.
(please ignore the big pile of random looking numbers and letters at the bottom of the (source code) page. I was trying out different ways to protect my email addy from spam-bots. Seems to work ok, but there are nicer ways to do it! I'm a little behind on cleaning that up  )
Good luck,
AmyD
|