This Message Forum is no longer in use

Please use the new Bravenet Help Forums FOUND HERE

General Forum
This Forum is Locked
Author
Comment
My email forms... is there anyway to make more than 5 text-area's?

Whenever I c/p (copy and paste) a bit of the email forms thml code, and paste it again, it works, but when people try to email me using that, it only comes up with eg.
1: A
2: B
3: D
4: E

This is what it should be:
1: A
2: B
3: C
4: D
5: E

Browser: Not currently working (My internet is stuffing up),3

Re: My email forms... is there anyway to make more than 5 text-area's?

I understand what you are asking about and it may best be explained by example. Below is a clipping from the copy/paste code in the email forms service manager. This is just code for two questions and two associated tags

What is your name?

name="name" size="34" style="width:230px;">

Where are you from?

name="where" size="34" style="width:230px;">



I have highlighted the attributes that are used to tell one area from another. With the possible exception of radio buttons, and I won't go into that here, every return element MUST have a unique name. If any of the elements have the same name, only the last one encountered will return a value. So, in the example above, if I were to add a third field, I would first copy the code, and then change the question text and the name attribute.

What is your name?

name="name" size="34" style="width:230px;">

Where are you from?

name="where" size="34" style="width:230px;">

How tall are you?

name="height" size="34" style="width:230px;">