Nehal Ingolelearnwithnehal.hashnode.dev·Mar 6, 2024HTTP MethodsIntroduction In the vast world of web development, understanding HTTP methods is akin to mastering the language spoken between clients and servers. Every time you tweet on Twitter, upload a video on YouTube, or make any interaction on the web, HTTP m...4 likesNodeDelete method
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"])){ ...get method
Laiba Razi Khanlaiba.hashnode.dev·Feb 4, 2023PHP short notesBoth get and post creates an array (get and post are superglobals). $_GET is an array of variables passed to the current script via the URL parameters. $_POST is an array of variables passed to the current script via the HTTP POST method. When to ...1 likePHP
Satyabrata Sanatechcs.hashnode.dev·Feb 1, 2023GET and Post FormsFor sending the information from the client to the server that you fill on your form we need to have "method=get" or "method=post" attributes. there are differences between the get and post methods. when we give "method=get".it sends the user data in...1 like·71 readsHTML5