Top "Get" questions

GET is one of many request methods supported by the HTTP protocol.

Make array of all GET-variables

I'm trying to make an array from all the GET-variables passed to a PHP script. So far I haven't found …

php arrays get
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 …

java spring rest spring-mvc get
How to pass an array via $_GET in php?

How can I pass one or more variables of type array to another page via $_GET? I always passed variable …

php arrays get
Is it possible to use getters/setters in interface definition?

At the moment, TypeScript does not allow use get/set methods(accessors) in interfaces. For example: interface I { get name():…

interface get set accessor typescript
Check if request is GET or POST

In my controller/action: if(!empty($_POST)) { if(Auth::attempt(Input::get('data'))) { return Redirect::intended(); } else { Session::flash('error_…

php post get laravel-4
How to get a cell value in JQGrid?

How to get a cell value in JQGrid? If I use the following syntax – var ret = jQuery("#MyGrid").jqGrid('getRowData', …

jquery jqgrid get cell
Can't access cookies from document.cookie in JS, but browser shows cookies exist

I can't access any cookie from JavaScript. I need to read some value and send them via JSON for my …

javascript cookies get document key-value
How to send a Get request in iOS?

I am making a library to get response from a particular URL with specified data and method type. For this, …

iphone objective-c url get nsurl
How to set cookie secure flag using javascript

I have tried to set a cookie using document.cookie = "tagname = test; secure" but this does not set the secure …

javascript security cookies get
Sanitizing user's data in GET by PHP

How do you sanitize data in $_GET -variables by PHP? I sanitize only one variable in GET by strip_tags. …

php get sanitization