Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I find out which method (usually GET or POST) is used for the current request?

share|improve this question

2 Answers

up vote 53 down vote accepted
$_SERVER['REQUEST_METHOD']

See the docs. It will contain the request method upper-cased (i.e. 'GET', 'HEAD', 'POST', 'PUT').

share|improve this answer
if (isset($_SERVER['HTTP_METHOD'])) {
  print  $_SERVER['HTTP_METHOD'];
}
share|improve this answer
4  
I can't find any reference to that key on us3.php.net/manual/en/reserved.variables.server.php – Dominic Rodger Oct 8 '09 at 14:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.