Do you want them hidden or not? Are you talking about auto populating them? If so, that's really easy. <input type="text" name="email" value="youraddress@something.com" /> HTML: You can dynamically create the value attribute, to auto fill a form. This is how many editing tables are built.
<INPUT type="hidden" name="address" value ="youraddress" /> Would be one example of a hidden field with a value specified to it. Ofcourse as mentioned before you can create a empty hidden field and dynamicaly populate it. Kind Regards
i want textbox where, customer types date: Jan 1 and code will check this date with these options: "event1"= Feb 2 "event3"= Mar 5 "event4"= Jan 1 and if Jan 1 was typed in the textbox code will know that its event4, and if Feb -event 1 and so on Thanks !