Tagged Questions

GET is one of many request methods supported by the HTTP protocol. The GET request method is used when the client needs to get data from the server as part of the request-URI.

learn more… | top users | synonyms

83
votes
12answers
11k 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 ...
37
votes
8answers
13k views

HTTP GET with request body

I'm developing a new REST-full webservice for our application. When doing a GET on certain entities, clients can request the contents of the entity. If they want to add some parameters (for example ...
26
votes
12answers
84k views

HTTP GET request in Javascript?

I need to do an HTTP GET request in JS, what's the best way to do that? Thanks EDIT: I need to do this in a Mac OS X dashcode widget
25
votes
5answers
12k views

HTTP URI GET limit

Is there a length limit of characters for an HTTP GET requests?
23
votes
5answers
34k views

How to send a GET request from PHP?

I'm planning to use PHP for a simple requirement. I need to download a XML content from a URL, for which I need to send HTTP GET request to that URL. How do I do it in PHP?
23
votes
16answers
19k 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 ...
19
votes
2answers
9k views

C# generic list <T> how to get the type of T?

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 myclass.SomList ...
17
votes
5answers
19k views

Handling input with the Zend Framework (Post,get,etc)

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 ...
16
votes
10answers
718 views

Logout: GET or POST?

This question is not about when to use GET or POST in general; it is about which is the recommended one for handling logging out of a web application. I have found plenty of information on the ...
14
votes
4answers
11k views

How to add parameters to a HTTP GET request in Android?

I have a HTTP GET request that I am attempting to send. I tried adding the parameters to this request by first creating a BasicHttpParams object and adding the parameters to that object, then calling ...
13
votes
8answers
520 views

Which method is better for implementing get/set?

There are two methos for implementing get/set. Method 1: Define get and set separately. class my_class { // ... }; class main_class { public: my_class get_data() const { return m_data; ...
12
votes
7answers
26k views

jquery serialize and $.post

I'm trying to send a lot of data from a form using the $.post method in jQuery. I've used the serialize() function first to make all the form data into one long string which I will then explode ...
12
votes
3answers
49k views

how to get the child node in div using javascript

Below is the structure of my div: <div id="ctl00_ContentPlaceHolder1_Jobs_dlItems_ctl01_a" onmouseup="checkMultipleSelection(this,event);"> <table cellpadding="0" cellspacing="0" ...
11
votes
4answers
2k views

Spring MVC @PathVariable getting truncated

I have a controller that provides RESTful access to information: @RequestMapping(method = RequestMethod.GET, value = Routes.BLAH_GET + "/{blahName}") public ModelAndView getBlah(@PathVariable String ...
11
votes
4answers
8k views

Parametrized get request in Ruby?

How do I make an HTTP GET request with parameters in Ruby? It's easy to do when you're POSTing: require 'net/http' require 'uri' HTTP.post_form URI.parse('http://www.example.com/search.cgi'), ...
11
votes
7answers
10k 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 ...
10
votes
12answers
382 views

Correct use of C# properties

private List<Date> _dates; public List<Date> Dates { get { return _dates; } set { _dates = value; } } OR public List<Date> Dates { get; set; } I ...
10
votes
6answers
3k views

post and get with same method signature

In my controller I have two actions called "Friends". The one that executes depends on whether or not it's a "get" versus a "post". So my code snippets look something like this: // Get: ...
10
votes
10answers
24k views

GET parameters in the URL with CodeIgniter

I know that codeIgniter turns off GET parameters by default. But by having everything done in POST, don't you get annoyed by the re-send data requests if ever you press back after a form ...
10
votes
8answers
8k 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 ...
9
votes
3answers
68 views

sending arrays in _GET in php

php gives the ability to send arrays from the _GET. example: test.php?var1=abc&arr[0]=1&arr[3]=test will output: Array ( [var1] => abc [arr] => Array ( ...
9
votes
10answers
2k views

GET vs POST in AJAX?

Why are there GET and POST requests in AJAX as it does not affect page URL anyway? What difference does it make by passing sensitive data over GET in AJAX as the data is not getting reflected to page ...
9
votes
10answers
1k 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 ...
8
votes
6answers
478 views

Java - Get/set methods receiving and returning “null”

I'm a beginner in Java. I'm trying, for training purpose, to build myself a chess game application. Within my class Case, that will be used to instanciate all the 64 cases of my board, I write ...
8
votes
5answers
1k views

Whats the difference between GET and POST encryption?

What is the difference when encrypting GET and POST data? Thx for answer Edit: i need to write it more specific. When https-SSL encrypts both of this methods, what is the difference in way browser ...
8
votes
8answers
261 views

Understanding REST: is GET fundamentally incompatible with any “number of views” counter?

I'm trying to understand REST. Under REST a GET must not trigger something transactional on the server (this is a definition everybody agrees upon, it is fundamental to REST). So imagine you've got a ...
8
votes
7answers
4k views

How can I send POST and GET data to a Perl CGI script via the command line?

I am trying to send a get or a post through a command-line argument. That is test the script in the command line before I test through a browser (the server has issues). I tried searching online, and ...
8
votes
4answers
4k views

How do I do a HTTP GET in Java?

How do I do a HTTP GET in Java? Thanks. David
7
votes
2answers
11k views

PHP using Gettext inside <<<EOF string

I use PHP's EOF string to format HTML content without the hassle of having to escape quotes etc. How can I use the function inside this string? <?php $str = <<<EOF ...
7
votes
6answers
217 views

Why should i POST data rather then GET?

I know you dont want to POST a form with a username and password where anyone could use the history to see or situations where repeat actions may not be desired (refreshing a page = adding an item to ...
7
votes
8answers
138 views

get or session?

i have a login form, which is in login.php. after authorization i moove client to some.php file! so, from following two methods, which is better? i can send information aboud user id e.t.c by GET i ...
7
votes
4answers
734 views

How I can get all reference with Reflection + C#

Using System.Reflection, I can get all methods from a specific class...but I need know what are the refereces to these methods. For examp. In Visual Studio, if you want the references of specific ...
7
votes
4answers
8k views

javascript - check if string begins with something?

I know that I can do like ^= to see if an id starts with something, and I tried using that for this, but it didn't work... Basically, I'm retrieving the url and I want to set a class for an element ...
7
votes
8answers
2k views

Use GET or POST for a search form

I have a couple search forms, 1 with ~50 fields and the other with ~100. Typically, as the HTML spec says, I do searches using the GET method as no data is changed. I haven't run into this problem ...
6
votes
1answer
54 views

REST and GET … again

Generally speaking, the REST community seems to dislike complex data in GET requests. I wonder if there is a good principle behind this, or is it just reifying the (arbitrary url length) restrictions ...
6
votes
3answers
7k views

Android get width returns 0

I creating all of the elements in my android project dynamically. I am trying to get the width and height of the button so that I can rotate the button around. Just trying to learn how to work with ...
6
votes
3answers
337 views

How much data can be sent via $_GET

How much data can be sent via $_GET in PHP5? Is there a maximum number of variables, string length etc? Thanks in advance.
6
votes
7answers
464 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
5k views

How can I do <form method=“get”> in ASP.Net for a search form?

I have a search form in an app I'm currently developing, and I would like for it to be the equivalent of method="GET". Thus, when clicking the search button, the user goes to ...
6
votes
6answers
1k 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'; } ...
5
votes
2answers
48 views

Confused about jQuery $.get and $.load

On my site, I would like to implement AJAX page loading, as seen on Facebook, Twitter, and the comparatively smaller site Kotaku Gaming. Basically, this is what I want to do: have a header that ...
5
votes
5answers
75 views

What purpose is of “&rnd=” parameter in http requests?

all! Why some web-applications use http-get parameter "&rnd=" ? What purpose is of it? What problems are solved by this tag?
5
votes
5answers
119 views

Are there advantages to using __get/__set instead of traditional getter/setter methods except for less code?

coming from Java, I only have a few vacational visits to PHP. Looking at magic get and set methods, my (Java influenced) tummy starts hurting: It looks as if you were accessing properties directly ...
5
votes
2answers
175 views

I want to retrieve multiple logs from a server with minimum lines of code

I would like to retrieve multiple log files from an Ubuntu server (using Python 2.7 on win 7 machine) without having to write verbose, repetitive code. I'm sure I can use a loop to accomplish this, ...
5
votes
1answer
329 views

Matlab Object Oriented Programming: Setting and getting properties for multiple objects

I have a class like so: classdef Vehicle < handle %Vehicle % Vehicle superclass properties Is_Active % Does the vehicle exist in the simualtion world? Speed % ...
5
votes
2answers
289 views

Callback in jQuery wrapper function

I have written a function that retrieves a html template, then binds data using jQuery.tmpl. I think it's fairly neat and tidy and encapsulates what I need and provides me a reusable function. My ...
5
votes
5answers
3k views

How make a HTTP GET request using Ruby on Rails?

I would like to take information from another website. Therefore (maybe) I should make a request to that website (in my case a HTTP GET request) and receive the response. How can I make this in Ruby ...
5
votes
3answers
1k views

Error CS0051 (Inconsistent accessibility: parameter type 'Job' is less accessible than method 'AddJobs.TotalPay(Job)')

I compiled and ran the source code below successfully by omitting the totalFee field. How do I write totalFee into this program so that it will accurately calculate the total fee for each job (rate * ...
5
votes
1answer
395 views

PHP, How to get Mime Type - Mission Impossible?

Is there any decent way in PHP to get the mime type? I have been searching extensively the past few hours and it seems like there are three main ways, which each way having problems: ...
5
votes
2answers
2k views

Why Automatically implemented properties must define both get and set accessors

When we define a property like public string Name {get; set;} dot net can make our properties code. but when we use public string Name {get;} public string Name {set;} we face with ...

1 2 3 4 5 41