Questions tagged as 'get'

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
3
answers

Parameter embedded in form action is not passed via GET

I have the following HTML code, and in the action section the address obeying my query string: <form name="searchCard" class="serachCard" method="get" action="painel.php?spv=nav/buscarCard"> <fieldset> <legend>Pes...
asked by 20.12.2013 / 17:14
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
2
answers

How to prevent the page from opening outside of an iframe?

Can not open link in iframe if (self != top) { top.location.replace(window.location.href) } I need something in javascript that runs counter to this. I want my URL to work only inside an iframe     
asked by 03.02.2016 / 14:50
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
2
answers

limit the for, php

Well, this is the following, I'm generating paging links to get more lightness in my system, the problem is I have many records in the database and this pagination generates many links, thus occupying a very large part of the page, I would like...
asked by 19.12.2014 / 14:38
2
answers

How to increase the size of the GET request to place parameters larger than 10KB in NGINX and PHP?

I need to make a very large GET request with NGINX and PHP. Is there any configuration in NGINX or PHP that solves this?     
asked by 25.02.2014 / 16:01
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
2
answers

Problem with very large URL

I'm trying to pass a URL per GET and the server is returning error 404 because the URL is too large (I'm passing an XML through the URL). I have already tried to add the MaxFieldLength variables with 1677721 and MaxRequestBytes with 1677721 i...
asked by 10.10.2014 / 19:59