Questions tagged [get]

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.

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.

See also: ,

17143 questions
3
votes
1 answer

How to get all order details including payment custmer and shipping details from order id Magento

I need to get all order details which includes all payment details, customer details, and shipping details or say all details of a order. For this I have use a event in my config file checkout_onepage_controller_success_action and the function in…
Rohit Goel
  • 3,396
  • 8
  • 56
  • 107
3
votes
2 answers

Wordpress using $_GET in sql query

I am trying to run a "sql query" which needs a post result. I keep getting this error: Call to a member function get_results() on a non-object in ../includes/functions.php on line 43 Here is my code: if (isset($_GET['slug'])){ function…
Paktwis Homayun
  • 300
  • 3
  • 17
3
votes
0 answers

HttpURLConnection Response code: 408 Request Timeout

Solved! This gave me the correct hint: Request to j_security_check return 408 error only with right paramters Querying the url /j_security_check is where to send the request to in order to retrieve cookies and the website status code. I'm trying to…
Bully WiiPlaza
  • 462
  • 1
  • 6
  • 16
3
votes
2 answers

AFHTTPSessionManager send GET request json format

I'm trying to send a request to web service using AFHTTPSessionManager Here's my problem: I want to send the URL GET request with the parameters in JSON format. Like…
static0886
  • 784
  • 9
  • 25
3
votes
3 answers

jQuery: $.get(url) breaks my sequential script execution

My attention is to check a calculated Image URI, if it exists… If i do this for images, that are shown as overlays: $.get(first_url).done(function(){ $('#any_DOM_id').append(''); }).fail(function(){ …
Viktor
  • 623
  • 4
  • 10
  • 25
3
votes
2 answers

GET id from php with javascript

Morning! I'm having problems with my code. I need to click an image and get an overlay with the information of that image. I have the overlay and my image sends the ID. My php is: echo "
PabloArty
  • 43
  • 1
  • 8
3
votes
2 answers

Java LinkedHashMap with removeEldestEntry causes java.lang.NullPointerException

The error looks like this Exception in thread "Thread-1" java.lang.NullPointerException at java.util.LinkedHashMap$Entry.remove(LinkedHashMap.java:332) at java.util.LinkedHashMap$Entry.recordAccess(LinkedHashMap.java:356) at…
SSpoke
  • 5,656
  • 10
  • 72
  • 124
3
votes
2 answers

How can I get and set pixel data in XNA?

I have a texture2D where I want to get the color of a specified pixel. Do something with it and put a new color in an other texture2D. I will need to do this with all the pixels in the texture. How can I do this. No pixel shader's please. It need to…
Aaron de Windt
  • 16,794
  • 13
  • 47
  • 62
3
votes
2 answers

$_POST and $_GET variables security without database

If you were not using a database with your application, but you do 'echo' or use a $_POST or $_GET variable in your code, do we need to escape them? Like: if(isset($_GET['test']){ echo $_GET['test']; } or function…
Neil Yoga Crypto
  • 615
  • 5
  • 16
3
votes
1 answer

Using jQuery, how can I get specific text from a remote HTML file?

Using jQuery, I'm trying to get some text that lives in a remote HTML file. I'm using filter() with a class of 'copy' to specify which text in the remote file I want to get. This is my code: $.get('/article.html', function(data) { …
Michael Lynch
  • 2,682
  • 3
  • 31
  • 59
3
votes
4 answers

curl returns empty reply from server bash due to curl failure

i am writing a simple bash script to "curl get" some values. Sometimes the code works and sometimes it fails, and says "empty reply from server". How to set up a check for this in bash so that if the curl fails once it tries again until it gets the…
david419
  • 435
  • 3
  • 8
  • 18
3
votes
2 answers

How do I get my $_Post to work

I am trying to get my website to submit an email every time someone would message (right now I'm just working on getting my variables to work...). It's a learning process so I'm here for it all and just trying to teach myself. However non of the…
3
votes
2 answers

Firemonkey Delphi TWebBrowser Get Text / HTML

How can i get text / html from a webpage on Firemonkey platform (Android/iOS). TWebBrowser Doesn't have anything for this...
user3376405
  • 31
  • 1
  • 2
3
votes
1 answer

How to get the right try_files $uri directive working with _GET parameters in nginx

I just migrated a site from apache to nginx, and am very pleased so far. However, the server doesn't seem to recognize a $_GET parameter. I've read that the answer is to change the try_files directive to: location / { try_files $uri $uri/…
dilettante
  • 381
  • 1
  • 4
  • 19
3
votes
1 answer

Use PHP GET Method in URL?

I have index.php?stol=XY. Now I want to open gotovo.php with same 'stol' like in index.php. This is my code: Link1 What am I doing wrong?
Karlo Sintic
  • 127
  • 7
1 2 3
99
100