Answers for "PHP after log in go to the homepage"

PHP
0

PHP after log in go to the homepage

<?php
session_start();
if (!isset($_SESSION['username']) || empty($_SESSION['username']){
  header("Location: mail_login.php");
}

?>
<html>
<body>
Welcome <?php echo $_SESSION['username']; ?>
Login Successful
</body>
</html>
Posted by: Guest on February-03-2022

Code answers related to "PHP after log in go to the homepage"

Browse Popular Code Answers by Language