Imagine that you have a form that has male and female options to save on the database.
If you don’t fill the attribute value inside of each “input” tag, you’ll never know which option was selected.
So, you must set value=“male” to the radio “male” and set the value=“female” to the radio “female”
The attribute “value” tells the server wich radio or checkbox was selected/checked.
If the value attribute is not set, when the user clicks on the submit button, the value will be just “On”.
The “On” value does not define wich radio or checkbox was pressed.
So, just type the values attributes: (I am putting just the block of the form)
value=“indoor”
value=“outdoor”
value=“loving”
value=“lazy”
value=“energetic”
It will seem like this (note the attribute “value” in each input element):