Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

when submitting data from a form to a database using a cgi script, whic…

Question

when submitting data from a form to a database using a cgi script, which attribute organizes information input by the user into name=value pairs?
form
value
name
method

Explanation:

Brief Explanations

The name attribute is assigned to form input elements; when the form is submitted via CGI, it pairs with the user's input (the value of the element) to create name=value pairs that are sent to the script/database. The form is the parent element, value is the user input data, and method defines how data is sent (GET/POST), not the pairing itself.

Answer:

name