Answers for "How to detect request method in PHP"

PHP
0

How to detect request method in PHP

// Check request method in php using super global variable $_SERVER
if(isset($_SERVER['REQUEST_METHOD'])){
	// Now display request method
    echo $_SERVER['REQUEST_METHOD'];
}
Posted by: Guest on March-20-2022

Browse Popular Code Answers by Language