HTML option value Attribute - W3Schools
https://www.w3schools.com/tags/att_option_value.aspDefinition and Usage. The value attribute specifies the value to be sent to a server when a form is submitted.. The content between the opening <option> and closing </option> tags is what the browsers will display in a drop-down list. However, the value of the value attribute is what will be sent to the server when a form is submitted.. Note: If the value attribute is not specified, the ...
HTML option tag - W3Schools
https://www.w3schools.com/tags/tag_option.aspDefinition and Usage. The <option> tag defines an option in a select list. <option> elements go inside a <select>, <optgroup>, or <datalist> element. Note: The <option> tag can be used without any attributes, but you usually need the value attribute, which indicates what is sent to the server on form submission. Tip: If you have a long list of options, you can group related options within …