Spring Posted December 27, 2010 Share Posted December 27, 2010 Sorry got it! my apologizes Quote Link to comment https://forums.phpfreaks.com/topic/222750-insert-a-option-from-a-drop-down-box-not-working/ Share on other sites More sharing options...
msaz87 Posted December 27, 2010 Share Posted December 27, 2010 You have your code all screwy. Name the select group: <select name="member_level"> Then the options don't have names, they have values: <option value="bronze">Bronze</option> Then for the php: if($_REQUEST['member_level'] == "bronze") { //do this } Quote Link to comment https://forums.phpfreaks.com/topic/222750-insert-a-option-from-a-drop-down-box-not-working/#findComment-1151863 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.