answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Who is the secure in post and get 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.


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


What are the differences between a GET and POST method for data submission. Which technique would prove to be more advantageous and in what cases?

When you use the get method the information is displayed in the URL. So it is not very safe for sending information like password or ID. Besides that it cannot be used to send variables with values larger then 2000 characters.When you use the post method the information is not displayed in the URL hence you cannot bookmark. But it can send upto 8 MB or more data and is more secure compared to the get method.


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?


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

True

Related questions

Is http post method equal to https method?

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


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.


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.


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


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


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


What is the best secure eCard site to post pictures?

The best secure website to post pictures in ecards is www.ecardster.com/ It keeps all your information secure and protects you from getting hacked or sending our your personal information.


What do you call the ornamental iron post in front of a house which was used to secure horses?

hitching post


What are the differences between a GET and POST method for data submission. Which technique would prove to be more advantageous and in what cases?

When you use the get method the information is displayed in the URL. So it is not very safe for sending information like password or ID. Besides that it cannot be used to send variables with values larger then 2000 characters.When you use the post method the information is not displayed in the URL hence you cannot bookmark. But it can send upto 8 MB or more data and is more secure compared to the get method.


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

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


What does ssh in Linux stsnds for?

SSH stands for Secure Shell. (Often shown as Secure SHell.) It is a secure method for a host computer to connect to a remote computer on the network or over the internet.


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.