Questions tagged as 'post'

2
answers

Check if user changed POST request

I have a javascript application that runs on the client side, in this application the user can trigger events that communicate with the server of my site through a POST request. However, I need to ensure that the user does not have forged the...
asked by 12.11.2015 / 12:39
2
answers

How to save multi-valued metabox checkbox

I have a loop where it shows the taxonomies of the groups in checkbox format, but when saving, it only saves the last% Would you like to know how to save all checked fields? <?php function noticias_dados_meta_box($post){ $val...
asked by 24.02.2014 / 12:52
2
answers

How to pass input value with POST method using Angular

I am trying to pass certain values from a input through the POST method using Angular, however I am not able to pass those values in the URL and not even get them on the server. Could someone help me solve this problem? Detail, for eac...
asked by 20.01.2016 / 18:17
1
answer

File Upload

I have the following code below: PHP: <?php $nome_temporario = $_FILES["Arquivo"]["tmp_name"]; $nome_real = $_FILES["Arquivo"]["name"]; copy($nome_temporario, "/public_html/publico/$nome_real"); ?> HTML: <form a...
asked by 18.11.2015 / 21:41
2
answers

Ajax Date Return Behavior

My doubt is technical. I would like to understand better what happened. I spent a few days trying to solve a problem in my code. I found that the functions of ajax or php were wrong. Two PHP functions were very similar, b...
asked by 25.07.2014 / 22:28
1
answer

What is an Over-posting attack?

I came across the term Over- posting while following Microsoft's guide to creating applications in ASP.NET Core. I had a question regarding the use of attributes in the signature of a method, which in this case, was the Bind attribute fo...
asked by 15.11.2017 / 22:58
1
answer

How to do POST with parameters in WebService REST in java?

Hello, I have a problem that I can not solve for days. The situation is as follows, until today I was only able to use the GET method of my webservice passing parameters directly to the URL path. But now I need to consume the webservice by pa...
asked by 10.11.2015 / 15:03
3
answers

How to send parameters to a server?

I started learning Android programming very fast. I was programming in Java desktop but never made any application to communicate with a server. Now I need to communicate with a server via the post method in an Android application. I...
asked by 07.10.2015 / 22:45
1
answer

About URL as it is encoded and POST parameters

The URL is always encoded, how is the encoding done, what does it encode, and what importance or need to encode a url? I have a div, which is broken by lines and gets something printed like: 1 2 3 In HTML it gets: 1<br/&g...
asked by 26.03.2015 / 04:21
3
answers

How to get all information from $ _POST

I have an array sent by $ _POST: array(4) { ["gabarito"]=> string(1) "4" ["resposta1"]=> string(1) "A" ["resposta2"]=> string(1) "B" ["resposta3"]=> string(1) "A" } I need t...
asked by 09.10.2018 / 20:38