PHP $_SERVER explained

70 Views
Published
#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";
}
Category
Bro Code
Tags
PHP course, PHP tutorial, PHP coding
Be the first to comment