post

Sending a form using the POST method

Hello. There is 1 page, it throws a variable via (submit) post to php, <form action="order.php" method="post" target=""& ... he name, and it still turns out the same. The first submit makes you immediately jump to the final result. How to avoid this?

Send a post request to a third-party site and get a response

Is it really possible to make javascript run at the click of a button, which would send a post request to a third-party site and receive a response? If not, what methods can be used to do this?

Sending a curl post request with xml data

There is some XML and a link to a third-party service: $url = 'https://example.com/'; $xml = '<?xml version="1.0" encodin ... exec($ch); curl_close($ch); return $result; } print_r(sendXmlOverPost($url, $xml)); An error is returned, System error!

Checking the form before submitting or submitting the form without checking PHP?

I'm learning PHP. I am interested in solving problems using PHP, HTML, and CSS, so please do not offer solutions using JS or ... <title>Успешная регистрация</title> </head> <body> Вы успешно зарегистрировались! </body>

c#: example of executing a GET request

Good afternoon, I can not understand the correct execution of the GET request. There is an API from which I can easily get da ... Language: ru Content-Type: application/json } Where can I see the simplest example of a synchronous GET and POST request?

Retrofit. POST. Android. Kotlin

There is a POST request to the server using the Retrofit library. If the request is successful, a certain object with data is ... d()) .subscribe({ view.onSuccessful() }, { view.onFailure(it.message!!) }) }

Python requests: Correct post request parameters for accessing the site's internal page (XHR)

There is a website. You need to get the data from a table located deep inside (in the admin panel). The direct URL can only b ... 883' table = session.post(link, headers=header) table.encoding = 'utf-8' print (table.text) Can someone help me out? Thanks!

isset doesn't work

The condition with isset is not met. the status is set to 200, and all data is transmitted. Jquery is enabled. What could be ... ST['mon']; $sub = $_POST['sub']; translate($mon); dataPrinting($mon); studentsPrinting(); } ```

The difference between PUT and POST

Hello. I'm ashamed to admit, but after reading many different articles, I still don't fully understand the difference between ... mber of services for uploading files use PUT. What is the reason for this? I am particularly interested in downloading files.

Error with authorization - axios (401 ERROR)

From the axios.post request --sees an error : --------Request failed with status code 401 It's main folder): const [email, se ... us).toBe(400) expect(r.message).toBe('Please provide meeting end time') }) done() })

Android. Requests to the web server

Please tell me what you can implement, there is a certain web form to fill out on the site, I do not want to fill it out thro ... , tell me the material, with visual examples. Or by passing this lib HttpURLConnection, there is something else to recommend.

POST request to the YouTube API in Java

It is necessary to make a request, but I do not quite understand how, namely, how to set the data required for transmission. ... } finally { con.disconnect(); } I don't understand where to write json to send to cURL this is --data

What method is used to send an http request in the form and without the form?

I want to understand how the GET and POST method works in an http request. 1) Do I understand correctly that by default, whe ... art of the html page is requested by the "GET" method, and the form (the "form" tag) in it is requested by the "POST" method?

Send a POST request

You need to send a POST request with parameters and read html in the response. Here is my method: public string HTMLContent ... sed=false" stream.Write gets an exception - NotSupportedException. The stream does not support writing. How do I fix this ?

Send a POST request using PHP

You need to send a POST request {"rule":{"value":"VALUE","tag":"TAG"}} to this URL https://streaming.vk.com/rules?key=abc. Without using <form> (html), how do I do this?

Sending a post request with a response received

I need to send a POST request via PHP Without CURL. After sending the request, the server sends an error response or a result ... ed to be able to set the values that I send, and after receiving the response, save it to a variable. Thank you in advance!

send a POST request (API) from C#

Trying to send a request POST from Xamarin, here is the text: var httpWebRequest = (HttpWebRequest)WebRequest.Create("http:/ ... = JsonConvert.DeserializeObject<TMessage>(value); db.InsReturn(a.sMessage); } Tell me, what am I doing wrong?

Send an html post request

Send a request using the POST method to a third-party site, how to do it correctly, the form will have 2-3 fields to fill in, ... ut type="text" id="val_'+num+'" onChange="NewRow(this)" value="" size="50">\n'; document.alternate.nums.value = num; } }

Authorization on the server via a POST HTTP request from Android

We are writing an Android application for the WildFly server. From the server side, logging in with your username and passwo ... se, the authorization page comes. It is possible that you need to manually assign attributes to the session or use cookies.

C# POST request for API access

You need to make a POST request to one site, I have a key to its API. Can you please tell me how to implement a request to th ... ication/json" -X POST -d '{"Param1":"Value1","Param2":"Value2"}' https:/название сайта. Thank you in advance for your help)