code:
<p>
* Ages?<img src="images/sp.gif">
21+<input type="radio" value="21+" name="ages">
<img src="images/sp.gif">
All Ages<input type="radio" value="all-ages" name="ages">
<img src="images/sp.gif">
21+ after 9pm<input type="radio"
value="21+ after 9pm" name="ages">
</p>
my 'ages' column in my db is enumerated and set to have these values input:
'21+','all-ages','21+ after 9pm'
i am trying to input 21+ after 9pm, but it doesn't get inserted into the db. it only works if i click on 21+. Does enum only work for two values? how can offer more than 2 as options?
anyone know?
thanks.
j