preetisoft2
New member
What are the differences between Get and post methods in form submitting.
give the case where we can use get and we can use post methods?
give the case where we can use get and we can use post methods?
The Get will stuff the input in the URL and hence it should not be used to send Passwords. Also, when there are files to be uploaded, the Method for the form should be POST. That is more on the HTML sides and all of the data sent to PHP depends on what you should use on the server.