Advertisements
Advertisements
प्रश्न
Write the purpose Get method and Post method.
उत्तर
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 a query string. All input data are visible by a user after they clicks the submit button.
APPEARS IN
संबंधित प्रश्न
Trace the output of following html code.
‹!DOCTYPE html›
‹html›
‹head›
‹title›Heading tags‹/title›
‹/head›
‹body›
‹h1 align=left›Information Technology‹/h1›
‹hr›
‹h2 align=center›XI Standard‹/h2›
‹h3 align=right›Division‹/h3›
‹/body›
‹/html›
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.
Discuss the following and Answer the question.
A teacher has asked a student to create a web page to accept number and check whether it is between 50 to 100.
- List the variable, operators to be used.
- Specify the built-in function used and structure used.
When you use the $_GET variable to collect data, the data is visible to ______.
Which attribute of form tag helps in client-side validation?
Write the features Form Handling.
Differentiate Get and Post Method.
Write short notes on File handling.
Explain Form Handling methods.
Customer Analytics firm needs to design a survey form as shown below:
Write suitable HTML code to design it.