exactly. Say you had an admin check on one of your sites, though if you did it this way, register_globals isn't going to save you, but lets say in a session you have
admin=1 for admins
and admin=0 for users
Then at the top of your pages, you check for admins by going
if($admin == 1) {
// do admin stuff
}
So, somone could potentially access your page like this
http://page.php?admin=1
And suddenly...they're admins!
But like I said, that's just bad coding anyway