Jump to content

Where does Drop-Down Selection Get Assigned


doubledee

Recommended Posts

If I have a drop-down list...

<select name="attendees">
                        <option value="">--</option>
                        <option value="1">1</option>
                        <option value="2">2</option>
                        <option value="3">3</option>
                        <option value="4">4</option>
                    </select>

 

 

Where does the value that the user selects get stored?

 

 

Does it get stored in $_POST by default (if a Form is used)?

 

What variable would hold the selected value?

 

 

 

Debbie

 

 

Correct. So to get the selected value from your select example you would use

$_POST['attendees']

 

So the selected value gets assigned to whatever NAME in the Control you use, right?

 

So if my <select> had no "name" attribute then things wouldn't work, right?

 

 

Debbie

 

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.