Jump to content

Insert a option from a drop down box not working?


Guest

Recommended Posts

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

}

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.