I am coding a form for a website. But the problem is that how can I store feedback from the users on the website storage.
A feedback form that stores data on the space in the hosted domain.
What is the difference between %26quot;POST%26quot; %26amp; GET Methods? I want to know about the HTML Forms for feedback.
Please, check these links and read tutorials...
POST
Query length can be unlimited (unlike in GET)
Is used to send a chunk of data to the server to be processed
You can send entire files using post
Your form data is attached to the end of the POST request (as opposed to the URL)
Not as quick and easy as using GET, but more versatile (provided that you are writing the CGI directly)
GET
Your entire form submission can be encapsulated in one URL, like a hyperlink so can store a query by a just a URL
You can access the CGI program with a query without using a form
Fully includes it in the URL: http://myhost.com/mypath/myscript.cgi?na...
Is how your browser downloads most files
Don%26#039;t use GET if you want to log each request
Is used to get a file or other resource
No comments:
Post a Comment