here's what I have in my login script:
session_start();
session_name("book");
$_SESSION['username']=$u;
Once it redirects back to index, here's what I have:
if(isset($_SESSION['username'])
{
...
}
But it gets neither the session name nor username. What the heck am I missing? I need help on this ASAP!!