= "12" && $time < "17") { $time_welc = "Good afternoon"; } else if ($time >= "17" && $time < "19") { $time_welc = "Good evening"; } else if ($time >= "19") { $time_welc = "Good night"; } // Welcome depending on if user is logged in or not if (isset($_SESSION["username"])) { echo "

".$time_welc." ".$_SESSION['username']."!

"; } else { echo "

".$time_welc."!

"; } // Random welcome message $welcome_message = array("*internal screaming*", "Sussy Wussy", "What is this world?", "Don't forget to drink water!", "Bruh", "This is so poorly programmed", "Sorry", "Fluffy made this!", "maybe", "I'm gay", "I wish we were better strangers.", "Just like Minecraft!", "If I were you, I'd run now", "This is the part where I kill you", "SILICA GEL \"DO NOT EAT\".", "This was supposed to be a simple project", "AAAAAAAAAAAAAAAAAAAA", "Let me out", "nice", "Thank you that you're here", "The weather is dry", "Need me a man 👀"); echo "

".$welcome_message[array_rand($welcome_message, 1)]."

"; ?>
"; } ?>