#PHP #course #tutorial

// $_SERVER = SGB that contains headers, paths, and script locations.
// The entries in this array are created by the web server.
// Shows nearly everything you need to know about the current web page env.

if($_SERVER["REQUEST_METHOD"] == "POST"){
echo"HELLO";
}