Aditya Gadhaveadityag7678.hashnode.dev·Jul 16, 2024Handle GET and POST Request in ExpressGET and POST are the two common HTTP Requests used for building REST APIs. Both of these calls are meant for some special purpose. As per the documentation GET requests are meant to fetch data from specified resources and POST requests are meant to...DiscussHTML
Giver Kdkgiver-kdk.hashnode.dev·Oct 16, 2023PHP: GET and POST MethodsGET Method It is a method to send data from a browser to a server. It is less secure because the data to be sent is shown in the URL. A form data can be submitted using the 'GET' method as follows: form.php: <?php if(isset($_GET["submit"])){ ...Discussget method
Namya Shahbigsmoke.hashnode.dev·Sep 3, 2022HTTP MethodsHyperText Transfer Protocol (HTTP) is designed to enable communications between clients and servers. The protocol works by clients sending requests to the servers and servers responding to the requests. We do CRUD operations (Create, Read, Update, D...Discuss·41 readshttp