well, you start off every page with session_start(); regardless of whether or not the user has logged in or you have actually created the 'user' or 'admin' session.
once the session has been created on one page (in my example, page1), it will carry over to your other pages.. which is how sessions work..
page1
session_start();
// the user has logged in or whatever (the session is created)
$_SESSION['login'] = 'user';
// then the user clicks to page2
page2
session_start();
//session has already been created, go ahead and check to see if the user is an admin or just a user
if (($_SESSION['login']) == 'admin') {
echo "you are an admin";
}else{
echo "you are not an admin!";
}