I have a session.
session_register("username");
session_register("password");
header("location:index.php");
exit();
When the page loads "index.php", it starts a session. What I want to happen is, it loads 'index.php' then displays "Welcome Back, *username*". where *username* would...