some ways to help you
1) coockies
2) sesions
3) protect in page
if ($user == "Pejone" && $password = "Pejonespassword")
{
//your page code here
} else {
//redirecting at the login page
}
4) read documentation about .htaccess at http://www.apache.org
I think last way will be good for you...

