Topic: Formicula Question
CelicaGT
avatar
Freshman
Freshman
Posts: 23

Posted:
7.Feb 2007 - 03:49

basically on my Formicula form I only have one option of who to contact, so the contact with drop down selection is useless. Basically I need the form to send to the one choice but not display this on the form itself. The bit of code I believe controls this is below, but what do i do to stop it showing but still working in background

For some reason the quote is not showing properly

Quote



<label for="cid"> :</label>
<select class="formborder" id="cid" name="cid">

<option value=""></option>

</select>



Thanks



edited by: CelicaGT, Feb 06, 2007 - 03:52 PM
Wendell
avatar
Professional
Professional
Posts: 1042

Posted:
7.Feb 2007 - 07:28

Change it to a hidden input, as such:

Code

<input type="hidden" name="cid" value="1" />


Note that the value of 1 refers to the default contact.

--
DWX Logo
CelicaGT
avatar
Freshman
Freshman
Posts: 23

Posted:
7.Feb 2007 - 18:06

Thanks for your help. I'm not great at this but even I should have known that! Obviously brain dead when I asked yesterday! Anyway cheers, really appreciate it.