tags:

views:

27

answers:

3

I have a form with list of fields :

  • last name
  • email
  • country
  • message

Before sending the form, i want to joint to it a static value : destination=marketing. i don't want it to be visible in my form. how would this be done ?

+1  A: 

With a hidden input. Or put it in the session instead.

Ignacio Vazquez-Abrams
+2  A: 

Input hidden is what you need :

<input type="hidden" name="destination" value="marketing" />
youssef azari
+2  A: 
<input type="hidden" name="destination" value="marketing" />

or you can add this variable when you process the form server-side

Anpher