How do I create an interactive HTML Form?

Craig Wilkinson

New member
Basically, I'm creating a contact form for my website but I don't want users answering questions they don't need to.

So, I'm asking how I will create a form where text-entry fields and drop down menus appear when a certain choice from another field or menu is selected and disappear if the user chooses another choice?
If you are going to tell me not to create an interactive form then don't bother, I am asking HOW I do it not IF I should do it. I know I probably shouldn't but I want too so please tell me how I could do it. Much appreciated :)
 
You can do this with a HTML widget with and embed code or if you are a programmer you can do it your self. Just ind a embed code online for something similar to what you asking. Search something like: Drop down menu selection HTML embed.

Daniel
 
Usually with a server side scripting language like PHP. Get aquainted with if statements and _$POST/_$GET methods for dynamic form interaction with PHP.

PHP for beginners
http://devzone.zend.com/article/627
 
Back
Top