answersLogoWhite

0

Get and post method

Updated: 11/5/2022
User Avatar

Wiki User

13y ago

Best Answer

Actually, both are the ways of traveling the data from client machine to server machine.But the difference is that data will travel through GET as a query_string and through POST as a input_string.

*Length of query_string is 256 but the length of input_string is unlimited.

*GET is fast as compare to POST.

*GET is visible POST is invisible.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Get and post method
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Is http post method equal to https method?

No, they are not equal in any way. HTTPS is more secure than the post method.


Who is the secure in post and get method?

Post is more secure method in forms. It does not supply the form information in the URL.


Two upright vertical post supported by a horizontal element describes which method of construction?

Two upright vertical posts supported by a horizontal element describes which method of construction?


Code for post and get in HTML form?

// getFirst name: Last name: Click the "Submit" button and the input will be sent to a page on the server called "form_action.asp".//postThe form-data can be sent as URL variables (with method="get") or as HTTP post (with method="post").Notes on the "get" method:This method appends the form-data to the URL in name/value pairsThis method is useful for form submissions where a user want to bookmark the resultThere is a limit to how much data you can place in a URL (varies between browsers), therefore, you cannot be sure that all of the form-data will be correctly transferredNever use the "get" method to pass sensitive information! (password or other sensitive information will be visible in the browser's address bar)Notes on the "post" method:This method sends the form-data as an HTTP post transactionForm submissions with the "post" method cannot be bookmarkedThe "post" method is more robust and secure than "get", and "post" does not have size limitations


When using the POST method variables are displayed in the URL is it true?

True

Related questions

Which is better to use while submitting a form GET method or POST method?

If your form has security items (like username, password) use POST method. Because post method is more secure. Otherwise you can use GET method. Also GET method is faster than POST method.


Is there any limitation in the length of the query string when using GET or POST method?

There is no limitation for the POST method but for the GET method it is 256 characters


Is http post method equal to https method?

No, they are not equal in any way. HTTPS is more secure than the post method.


Who is the secure in post and get method?

Post is more secure method in forms. It does not supply the form information in the URL.


Method is considered the preferred way of sending data to a Web server?

The post method. ( As opposed to the get method ).


Using php how do you choose from get method and post method to get information from forms?

Use the post method as far as possible. It encrypts the requests and then sends it to the server. Comparatively you could say it is more secure.


What is method in HTML form?

There are two form methods: method="POST" and method="GET" GET makes the page it sends the form info from retrieve it from the URL. POST sends the data, and can handle more characters than GET.


Two upright vertical post supported by a horizontal element describes which method of construction?

Two upright vertical posts supported by a horizontal element describes which method of construction?


Code for post and get in HTML form?

// getFirst name: Last name: Click the "Submit" button and the input will be sent to a page on the server called "form_action.asp".//postThe form-data can be sent as URL variables (with method="get") or as HTTP post (with method="post").Notes on the "get" method:This method appends the form-data to the URL in name/value pairsThis method is useful for form submissions where a user want to bookmark the resultThere is a limit to how much data you can place in a URL (varies between browsers), therefore, you cannot be sure that all of the form-data will be correctly transferredNever use the "get" method to pass sensitive information! (password or other sensitive information will be visible in the browser's address bar)Notes on the "post" method:This method sends the form-data as an HTTP post transactionForm submissions with the "post" method cannot be bookmarkedThe "post" method is more robust and secure than "get", and "post" does not have size limitations


When creating a form for user input it is a best practice to indicate method equals 'post' in the form tag?

Both the get and post method send data from client to server. The problem with get method is data is shown in the URL and hence it is not secure & only a fixed amount of characters can be sent across servers by using get method On the other hand post has no such constraints on amount of data sent and there is no data shown in the URL. By and large use the POST or REQUEST methods for sending or receiving data


When using the POST method variables are displayed in the URL.true or false?

true


When using the POST method variables are displayed in the URL is it true?

True