Advertisements
Advertisements
Question
Explain Form Handling methods.
Answer in Brief
Solution
- 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.
- All input values are synchronized and sent to the server via POST method or GET method.
- Method is an attribute form tag in HTML. Once the data reaches the server, two PHP variables such as $_POST and $_GET collects the data and prepares the response accordingly.
- Post Method:
- The input data sent to the server with POST method is stored in the request body of the client’s HTTP request.
- Get Method:
- The input data sent to the server with POST method via URL address is known as the query string.
- All input data are visible by a user after they clicks the submit button.
shaalaa.com
HTML Forms
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Discuss the following and Answer the question.
A Jr. web designer wants to design a webpage to enter the employee name, address. He needs a button to clear the form content and submit the data.
- Write the different controls he will use to create the web page.
- State the tags to be used for the controls.
When you use the $_GET variable to collect data, the data is visible to ______.
______ method stores the input data in the request body of the clients HTTP request.
In which input field only one option Can be selected?
Which attribute of form tag helps in client-side validation?
How PHP files can be accessed?
What is a HTML form?
Differentiate check box and Radio button.
Write short notes on File handling.
Explain in detail of File handling functions.