Hello,
I have a listbox and I want to store its value through php to mysql,
How can I do it sir
I would be glad if you can help me My email is biraju@hotmail.com
Thanks Biraju Shah
in your form
<select name="myvalue"> <option value="yes">yes</option> <option value="no">no</option> </select>
then, your php code will see myvalue as either
$HTTP_GET_VARS[myvalue] or $HTTP_POST_VARS[myvalue]