Put this in the same folder you need to protect.
This tutorial will help you learn how to password protect your file quickly and easily in a few lines of code.
The code can be split up into three if-else statements. Let's take a look at what we will have to do in order to set up the password protection:
1. If the user has not been authenticated, then use the PHP header and ask for a username and password.
2. Else, if the user's name is "spoono" and the password is "spoono", log in. Inside here you would put all the code for the user.
3. Else tell them the user/password failed.
Finally, here is the PHP Code:
Enjoy!
The code can be split up into three if-else statements. Let's take a look at what we will have to do in order to set up the password protection:
1. If the user has not been authenticated, then use the PHP header and ask for a username and password.
2. Else, if the user's name is "spoono" and the password is "spoono", log in. Inside here you would put all the code for the user.
3. Else tell them the user/password failed.
Finally, here is the PHP Code:
<?
//part 1
if (!isset($PHP_AUTH_USER))
{
header("WWW-Authenticate: Basic realm="Spoono Password."");
Header("HTTP/1.0 401 Unauthorized");
exit;
}
//part 2
else if(($PHP_AUTH_USER=="spoono") && ($PHP_AUTH_PW=="spoono"))
{
echo "You got in...";
//place the code for the whole user page in here
//you can also set up a redirect to the user page if you want
}
//part 3
else
{
echo "<html><body bgcolor=ffffcc>Faiiiiiiiil";
//fail try again
}
?>Enjoy!

Main:
Posted by 

and explaining some lines of code with more details would be better.. like for
;
Header("HTTP/1.0 401 Unauthorized"