Questions tagged as 'post'

2
answers

Using $ _REQUEST instead of $ _GET, $ _POST, and $ _COOKIE

In PHP we have the global variable $_REQUEST that can be used instead of use the global variables $_GET , $_POST and $_COOKIE . For example: <?php // utilizar $bubu = $_REQUEST['bubu']; // ou uma das...
asked by 16.10.2014 / 12:43
5
answers

Security in submitting information via form in the HTTP header

After a few tests on Yahoo and Facebook, I realized that after filling in my username and password and clicking Login, with the developer tools open in the Network option (Chrome or Firefox) I noticed that if I stop sending the data on the pag...
asked by 13.05.2014 / 03:58
2
answers

How to get form data via "POST"?

Is there any way I can receive data coming from an external form using method="post" on my jsf page? I can already do this when data travels via GET . <f:metadata> <f:viewParam name="dados" value="#{testeMB.dadoExt...
asked by 08.01.2014 / 13:56
4
answers

Maximum amount of elements sent by a form?

I would like to know if there is a maximum amount of elements that I can send from one form to another via POST as well as via GET . I know that if I pass my data via GET , there is a maximum length of URL , varying a...
asked by 16.01.2015 / 12:19
2
answers

Why do not browsers implement HTTP PUT and DELETE protocols?

For some reason Internet browsers (Chrome, Firefox, IE, ...) have just decided to implement the HTTP protocol's GET and POST methods. Other methods such as PUT and DELETE are left out. Why? My question arose because #    The Rails fr...
asked by 23.05.2014 / 14:48
1
answer

How to make GET / POST request with Node.JS?

I need to make a request both post and get from a REST API, I wanted to know how to make the request with Node.js? I found some articles on the internet but nothing succinct.     
asked by 01.01.2017 / 04:32
1
answer

How to reduce the size of a variable passed via POST by compressing it

My application in Android gets the String sends to the arquivo.php that processes the data. I soon saw that I could not pass the code in base64 to arquivo.php . I need some function in java that compre...
asked by 17.06.2015 / 20:34
1
answer

POST and GET in SSL

On a site, secured with SSL, are POST and GET also encrypted? The fact that GET is part of the address, is it still encrypted?     
asked by 01.09.2014 / 04:51
1
answer

Remote REST WebService in PHP receiving JSON via POST with problems

I have the following situation ... A pure javascript client application that runs with node.js, where I send via a JSON post, as follows: doLoad = function (livrosList){ var xmlhttp = new XMLHttpRequest(); x...
asked by 15.01.2015 / 00:01
1
answer

How to get around the page expiration?

My problem is this: The user logs in, the data is sent to the requests page (which lists all of the person's requests in summary form). This page verifies if the login is valid. If it is, the rest of the page is displayed, if not, it returns...
asked by 14.02.2014 / 13:29