############################ Login Session 1.0 ###########################

Login Session is a simple login script.  It supports multiple users, and
can be used to protect web pages from unwanted visitors.  Users are stored
in a flat file, and passwords are MD5 encrypted.  To get started, simply
upload one file to your web server and add one line of code to your page.

           _________________________________________________


This script was written entirely by me.  It is free to distribute and
free to modify.

If you would like to contact me, feel free to visit my website at
http://www.myphpscripts.net.

Enjoy!

##########################################################################

// Installation Requirements //

- PHP 4

// Installation Instructions //

1. Edit the variables in the login.php file.

2. Upload the login.php file to your webserver.

3. Paste the following code on the first line of the web page you would like
   to protect:  <? require("login.php"); ?>

4. If the extension on your webpage is not .php, change the extension to .php.
   Example: Rename homepage.htm to homepage.php

5. Visit the webpage and create your first login.

That should be it.  You now have a password protected webpage.

Note: To add a logout option to your page, use the following code:
      <a href="login.php?logout">Logout</a>

##########################################################################

// Updates & Bugfixes //