Answers for "how to check if request method is post php"

PHP
5

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 "how to check if request method is post php"

Browse Popular Code Answers by Language