ladieballer2004 Posted August 25, 2009 Share Posted August 25, 2009 I have a field in my form that asks the user what Grade he or she is in but i don understand how to pass that answer into my database. Can anyone help? <form action="insert.php" method="POST"> <select name="Class" id="Class" onchange="MM_jumpMenu('parent',this,0)"> <option>Select</option> <option>Freshman</option> <option>Sophomore</option> <option>Junior</option> <option>Senior</option> <option>item1</option> </select> </form> Quote Link to comment https://forums.phpfreaks.com/topic/171805-help-with-drop-down-menus/ Share on other sites More sharing options...
mikesta707 Posted August 25, 2009 Share Posted August 25, 2009 $grade = $_POST['Class']; ? Quote Link to comment https://forums.phpfreaks.com/topic/171805-help-with-drop-down-menus/#findComment-905922 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.