Hi, I am making a form. There is a necessary field in the form but it will be exactly the same for everyone who fills out the form. Can I just hide the field in the html so that it still works but it doesn't confuse people who don't know what to put?
Any replies are very much appreciated!
Karrie
01-21-2003, 05:26 PM
Yes, you can... the code that you would insert into the rest of the form would be like this:
<input type="hidden" name="nameoffieldhere" value="thevalue">
I hope that helps? If it's not specific enough, tell me :P
Thanks alot thats exactley what I wanted! Can you help me with one more thing?
My table is currently set at border="1" but when I put bordercolor="black" is made two borders instead of one as I indicated above, whats with that? Also I want my table to have just a border around the outside instead of every cell! Is that possible?
Thanks alot!
starlet
01-22-2003, 04:38 PM
to get rid of the double border add this to the table tag...
style="border-collapse:collapse"
Thankyou very much Starlet! Cool avatar btw :)
To have the border around just the outside, there are a number of different ways. The easiest is to put the current table inside another table, then apply your features to the outer table.
<table border="1" bordercolor="black" style="border-collapse:collapse;"><tr><td>
You current table full of form stuff here.
</td></tr></table>
Starlet already sorted it, but thanks anyway!