Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML HTML Forms Text Areas and Selects

Zachary Robertson
Zachary Robertson
3,088 Points

Doesn't the select element need some sort of name property to be identified during processing?

The other form elements had some sort of identification. Select doesn't. How are those variables saved and what distinguishes one select element from another potential select element within a form?

1 Answer

Yes. The name property identifies the name of the list inside the form. This will help you submit the information through a form once it is connected to a server based language like PHP.