<?php
session_start();
if (isset($_SESSION["Email"]))
{
echo '<h1> Login Success, Welcome - ' . $_SESSION["Email"]. '</h1>';
}
?>
This login success welcome,(email) keep showing after I logged in, is there any way to show it only once? even when I reload like it will disappear? I want this looping to stop please help me.