Support Forums
[TUT] PHP Password Protected Page - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: PHP The Hypertext Preprocessor (https://www.supportforums.net/forumdisplay.php?fid=21)
+---- Thread: [TUT] PHP Password Protected Page (/showthread.php?tid=8216)

Pages: 1 2 3


[TUT] PHP Password Protected Page - PurpleHaze - 07-06-2010

This login does not use a database so the password is in the code which is "lol". Since it is server sided no one can right-click to view password.

I'll explain how the code works below.

In Section 1 the code uses sessions to determine whether a user is logged in. Our session variable is "$_SESSION['auth']" and we assign to a value of false or 0 which means that the user is not authorized to view the page.

Section 2 checks to see if the form was submited and then if the password is equal to "lol". If the password is equal to "lol" then our variable changes to true or 1.

Section 3 checks to see the variable is equal to 0. If it is equal to 0 then that means that the user has not logged in and so we need to login screen to be shown.

Section 4 checks to see if the variable is equal to 1. If it is then that means that the user is logged in and then is allowed to see the other content and so it is shown.

Remember that this script is basic and many more features could be added including security. This is just so you understand how it works.

Code:
<?php
//Section 1
session_start();

$_SESSION['auth'] = 0;

//Section 2
if (isset($_POST['submit']))
{
    if ($_POST['password'] == "lol")
    {
        $_SESSION['auth'] = 1;
    }
}

//Section 3
if ($_SESSION['auth'] == 0)
{
    echo
    ('
<form method="post">
<input type="password" name="password" />
<input type="submit" name="submit" value="Login" />
</form>
    ');    
}

//Section 4
if ($_SESSION['auth'] == 1)
{
    echo
    ('
<b>This is our secret content. You can use HTML codes here also.</b>
    ');
}
?>



RE: [TUT] PHP Password Protected Page - -BoodyE- - 07-09-2010

Thanks for this . Will be useful


RE: [TUT] PHP Password Protected Page - Яichie - 07-09-2010

(07-06-2010, 04:01 PM)PurpleHaze Wrote: This login does not use a database so the password is in the code which is "lol". Since it is server sided no one can right-click to view password.

I'll explain how the code works below.

In Section 1 the code uses sessions to determine whether a user is logged in. Our session variable is "$_SESSION['auth']" and we assign to a value of false or 0 which means that the user is not authorized to view the page.

Section 2 checks to see if the form was submited and then if the password is equal to "lol". If the password is equal to "lol" then our variable changes to true or 1.

Section 3 checks to see the variable is equal to 0. If it is equal to 0 then that means that the user has not logged in and so we need to login screen to be shown.

Section 4 checks to see if the variable is equal to 1. If it is then that means that the user is logged in and then is allowed to see the other content and so it is shown.

Remember that this script is basic and many more features could be added including security. This is just so you understand how it works.

Code:
<?php
//Section 1
session_start();

$_SESSION['auth'] = 0;

//Section 2
if (isset($_POST['submit']))
{
    if ($_POST['password'] == "lol")
    {
        $_SESSION['auth'] = 1;
    }
}

//Section 3
if ($_SESSION['auth'] == 0)
{
    echo
    ('
<form method="post">
<input type="password" name="password" />
<input type="submit" name="submit" value="Login" />
</form>
    ');    
}

//Section 4
if ($_SESSION['auth'] == 1)
{
    echo
    ('
<b>This is our secret content. You can use HTML codes here also.</b>
    ');
}
?>

This will come in handy once I edit a CMS Im editing. Thank you.


RE: [TUT] PHP Password Protected Page - 【 ¶ÑÇƦ€Ƿ¦ßŁΞ 】 - 08-25-2010

Handy script , Try to add some more useful tricks to keep this thread alive


RE: [TUT] PHP Password Protected Page - `P R O D I G Y™ - 08-25-2010

By any chance, is this possible to trick/break?


RE: [TUT] PHP Password Protected Page - Yang- - 08-26-2010

There are tons of security authentication systems in php avalable free on interbet


RE: [TUT] PHP Password Protected Page - Iarkey - 08-26-2010

(08-25-2010, 04:30 AM)`P R O D I G Y™ Wrote: By any chance, is this possible to trick/break?
you could probably hijack the session.


RE: [TUT] PHP Password Protected Page - Proof - 08-26-2010

It's better to set a cookie

PHP Code:
setcookie("auth"1,  time()+3600); 

Close browser=destroy session. Use a cookie keeps them logged in that one up there lasts an hour.


RE: [TUT] PHP Password Protected Page - DeMeR - 09-02-2010

Thanks for the find, this will be used.


RE: [TUT] PHP Password Protected Page - echo.phyber - 09-02-2010

Yeah dude good tut, but its easy to crack tho...