Web_Technology_Revision_QA
Web_Technology_Revision_QA
1. What is the difference between GET and POST methods in HTML forms?
- GET: Appends data to URL, less secure, used for retrieving data.
- POST: Sends data in body, more secure, used for submitting data.
- AJAX allows asynchronous communication with the server without page reload.