24
votes
13answers
1k views
When do you use POST and when do you use GET?
From what I can gather, there are three categories - never use GET and use POST, never use POST and use GET, and it doesn't matter which one you use.
Am I correct in assuming those three cases? If …
7
votes
9answers
366 views
What is the best way to design a HTTP request when somewhat complex parameters are needed?
I have some web services that I am writing and I am trying to be as RESTful as possible. I am hosting these web services using a HTTPHandler running inside of IIS/ASP.NET/SharePoint.
Most of my …
6
votes
3answers
1k views
C# generic list <T> how to get the type of T?
Hello,
I’m working on a reflection project, and now I’m stuck.
If I have an object of “myclass” that can hold a List
does anyone know how to get the type as in the code below if the property …
6
votes
7answers
304 views
Why shouldn’t data be modified on an HTTP GET request?
I know that using non-GET methods (POST, PUT, DELETE) to modify server data is The Right Way to do things. I can find multiple resources claiming that GET requests should not change resources on the …
6
votes
5answers
2k views
Handling input with the Zend Framework (Post,get,etc)
Hi,
im re-factoring php on zend code and all the code is full of $_GET["this"] and $_POST["that"]. I have always used the more phpish $this->_request->getPost('this') and …
6
votes
6answers
577 views
PHP: GET-data automatically being declared as variables
Take this code:
<?php
if (isset($_POST['action']) && !empty($_POST['action'])) {
$action = $_POST['action'];
}
if ($action) {
echo $action;
}
else {
echo 'No variable';
}
…
4
votes
12answers
2k views
When should I use GET or POST method? What’s the difference between them?
I think the title is my question. I would like to know what's the difference when using GET or POST method in php. Which one is more secure? What are dis/advantages of each of them?
Thanks
EDIT: I …
4
votes
7answers
2k views
How to build query string with Javascript
Just wondering if there is anything built-in to Javascript that can take a Form and return the query parameters, eg: "var1=value&var2=value2&arr[]=foo&arr[]=bar..."
I've been wondering …
3
votes
4answers
73 views
How to pass an array?
Hello!
How could I pass an array with PHP by GET method?
Thanks
3
votes
1answer
49 views
javascript browser-like GET request
I need to request web page client-side and than pass it to server as a string. I tried jQuery:
$.get(
"http://example.ru/",
{name:"Joe", age:"42"},
function(data){
$.get(
…
3
votes
4answers
184 views
Passing base64 encoded strings in URL
Is it safe to pass raw base64 encoded strings via GET parameters?
3
votes
8answers
160 views
what are the vulnerabilities in direct use of GET and POST?
Hi all,
i want to know what are the vulnerabilities while using the GET and POST variable directly.
ie with out trimming and addslashes function and mysql escape string something like that.
My …
3
votes
6answers
526 views
Beautiful way to remove GET-variables with PHP?
I have a string with a full URL including GET variables. Which is the best way to remove the GET variables? Is there a nice way to remove just one of them?
This is a code that works but is not very …
3
votes
8answers
234 views
Should my framework allow access to $_GET and $_POST at the same time?
Hi,
I know you can use both $_GET and $_POST at the same time, but is this a required "feature"? I am writing a framework, where you can access input through:
$value = …
3
votes
5answers
411 views
ColdFusion CFHTTP Post is doing a second GET request right after
I am using ColdFusion 8.
I'm doing a CFHTTP Post to a remote server. The remote site has looked at their logs and they say my code is doing the POST, and then immediately doing a 2nd GET request.
…
