lacko Posted February 20, 2008 Share Posted February 20, 2008 Im trying to make it so when someone registers they choose between 2 groups in a drop down menu. The 2 groups would then relate to what user group they are in. For example person registers with group a and their usergroup number is 2 Another person registers and chooses group b and their usergroup number is 3. Do you get what i mean? Thank you to anyone that can help Lacko Link to comment https://forums.phpfreaks.com/topic/92151-drop-down-menu-register/ Share on other sites More sharing options...
fenway Posted February 20, 2008 Share Posted February 20, 2008 No, I dont' get it. Link to comment https://forums.phpfreaks.com/topic/92151-drop-down-menu-register/#findComment-472026 Share on other sites More sharing options...
PHP Monkeh Posted February 22, 2008 Share Posted February 22, 2008 This is probably a HTML/PHP question rather than MySQL. But you could add something like this to your form: <select name="group"> <option value="1">Group 1</option> <option value="2">Group 2</option> </select> Then insert the value of $_POST['group'] in to the "group" field in your table. Link to comment https://forums.phpfreaks.com/topic/92151-drop-down-menu-register/#findComment-473774 Share on other sites More sharing options...
lacko Posted February 23, 2008 Author Share Posted February 23, 2008 ahhhhh thank you PHP Monkeh. You were exactly right in what i needed. Sorry it was in the wrong area it was kinda linked with MySQL so i thought id put it in here Thanks all Link to comment https://forums.phpfreaks.com/topic/92151-drop-down-menu-register/#findComment-474512 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.