the....attribute specifies the name of textbox. fill in the blanks
.
Answers
Answer:
$username = $_POST['username']; So PHP will look for a HTML form element with the NAME username. It then looks at the VALUE attribute for this form element.
Explanation:
hope u will be satisfied
plz mark as brilliant answer
Answer: Name attribute
Explanation: The name attribute specifies the name of the <input> element.
The name attribute is used to refer to elements in JavaScript, or to refer to form data after the form is submitted.
When submitting the form, only form elements with name attributes will have their values.
The name attribute specifies a name for the HTML element. This name attribute can be used to refer to an element in JavaScript. For a <form> element, the name attribute is used as a reference when submitting data. For an <iframe> element, the name attribute can be used to target form submissions.
#SPJ3