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 Quote Link to comment Share on other sites More sharing options...
fenway Posted February 20, 2008 Share Posted February 20, 2008 No, I dont' get it. Quote Link to comment 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. Quote Link to comment 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 Quote Link to comment 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.