Video Belajar
Tonton dan pelajari berbagai topik menarik melalui video pembelajaran eksklusif dari Channel Bro Code.
Bro Code
7004
PHP $_SERVER explained
#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";
}
// $_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";
}