Answers for "php detect request type"

PHP
7

php detect request type

if ($_SERVER['REQUEST_METHOD'] === 'POST') {
     // Boom baby we a POST method
}
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
     // We are a GET method
}
Posted by: Guest on October-30-2019

Browse Popular Code Answers by Language