`<input type="text" id="email" name="email">, `Use of the name attribute?

<input type="text" id="email" name="email">

what is the purpose of using the name attribute in the < input> attribute and also pls tell me the use of the name attribute

If you’re writing (backend) code to process form submissions, you’ll refer to the fields by their name attribute.

1 Like

@kevcomedia Thank you… :slight_smile: