Questions tagged as 'post'

2
answers

Selecting a Specific Value in Array Jquery

Hello, good morning! I am a beginner in the field and would like (if possible) help in resolving an issue. The user will have a field to select the cities, when selecting, the system will capture the chosen city and will query a database to a...
asked by 24.11.2017 / 13:26
1
answer

Button that loads 3 more posts

I want my button id="boot" ( <div id="boot"> ) each time it is pressed, press +3 testimonials. <?php query_posts( array ( "category_name" => "depo" )); if (have_posts()) : while (have_posts()) : the_post(); ?> <...
asked by 24.09.2015 / 18:50
0
answers

The underlying connection was closed: The connection was closed unexpectedly

I'm designing in WebForm, and I'm passing an array to a method that will make a post for a specific URL. However, after I run the project and send the array to the method, it breaks with the error reported in the title. private void webBrow...
asked by 14.10.2015 / 03:59
0
answers

error in content registration [closed]

This is my first post so sorry if I do something wrong if I violate any rules please let me know. My doubts are as follows:  I am creating a "social network" and the posting code is not working I used the same code (with other variables obvio...
asked by 21.01.2016 / 13:07
1
answer

How to pass a post with an array to a URL of a WebFORM

I'm trying to send an array with some elements in a post to a url. I called WebBroser method, I passed the parameters, but I still had no idea how to finish implementing. Follow my code: private void webBrowser1_DocumentCompleted(obje...
asked by 09.10.2015 / 04:27
0
answers

Selected Item Listview Retrofit

I have an application that uses retrofit for connection, and in it I have a listview where I want to make a long click on it and select the position item and make a webservice post with that item, everything is already working, getting the part...
asked by 26.09.2017 / 15:29
2
answers

Is it possible to use $ _POST within sha1? or other type of encryption?

I'm doing form comparison using sha1 as follows sha1($_POST['txtEmpresa'] + $_POST['txtFornecedor'] + $_POST['txtDocumento'] + $_POST['txtValor'] + $_POST['txtVencimento']); Is there any way to reduce this code to look like this? sha1($_P...
asked by 11.05.2017 / 16:37
2
answers

How to send form parameters instead of JSON in angular?

I'm trying to send a POST via angular, just like I did in JQuery , however, when trying to capture the data via $_POST variable, it's not bringing any value. I'm running a code similar to this in angular : $http.post('/...
asked by 06.07.2016 / 16:23
3
answers

Conditions do not return expected values

I have a simple HTML and php application, which consists of 2 fields, where they will be received on a php page by the $_POST method. If I add the values to the field, it goes correctly. But if I did not add anything, I expected it to fal...
asked by 13.11.2015 / 19:05
1
answer

POST Request with token

Start an HTTP request via the POST method for the authentication URL, with the following parameters: login password response = link "MY_TOKEN" The response to the request made in 1 will be answered by another URL. This URL repre...
asked by 30.08.2014 / 04:11