1.

Write the features Form Handling?

Answer»

Form Handling:

1. Form controls are used to collect data from the users and sent to server.

2. When the user keying the input data in HTML controls and clicks the submit button the request will be generated and reaches a PHP file which is mentioned in the FORM tag under the Action attribute.

3. All input values are synchronized and sent to the server via POST method or GET method.

4. Once the data reaches the server, two PHP variables such as $_POST and $_GET collects – the data and prepares the response accordingly.



Discussion

No Comment Found