+ 1
What is the use of name attribute in form tag
Name attribute
3 Respostas
+ 5
We use it so when a form is submitted, then the backend script can read which values correspond to which inputs. E.g. <input type=“text” name=“username”/> So on the backend, you can access the value with the “username” key.
+ 1
Thanks
0
Love you all