Answers for "Check if the request is post or put php"

PHP
1

check if post request php

Better use $_SERVER['REQUEST_METHOD']:

if ($_SERVER['REQUEST_METHOD'] === 'POST') {
    // …
}
Posted by: Guest on February-09-2021

Code answers related to "Check if the request is post or put php"

Browse Popular Code Answers by Language