Snippets tagged “http-post”
4 snippets use this tag.
- How can I select and upload multiple files with HTML and PHP, using HTTP POST?PHP
You can use the following HTML code to create a form that allows users to select and upload multiple files.
- How to run a PHP function from an HTML form?PHP
To run a PHP function from an HTML form, you will need to create an HTML form with the desired inputs, such as text fields and submit buttons.
- How to send HTTP request in Java?Java
In Java, you can send an HTTP request using the java.net.URL and java.net.HttpURLConnection classes.
- HTTP POST using JSON in JavaJava
To make an HTTP POST request using JSON in Java, you can use the HttpURLConnection class available in the java.net package. Here's an example of how to do it: