Jump to content

Drop Down Menu Register


lacko

Recommended Posts

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

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.