![]() |
|
||
|
|
|||
To turn a hidden field to a text input field, just change the word "hidden" to "text" and give the field a size length like size=20. Change: <input type="hidden" name="Describe" value=""> To: <input type="text" name="Describe" size=20 value=""> Text input fields works with:
You can also make the input fields required by entering the tilde character ~ in front of the variable. (example: "~Describe")
<input type="text" name="~Describe" size=20 value="">
|