Ads
Trellian SubmitWolf : Launch your website : submit to 1000's of search engines + directories with 500,000+ link pages.
Lunarpages webhosting : Standard Web Hosting Plan starting at $7.95 a month includes 1000MB storage and 40GB data transfer.
Quote of the day : "If I can learn to do it, you can learn to do it." Vladimir

Next quote in 21.8 hours. [suggest a quote]

Our free stuff

PHP Scripts → Login script

Archive contents :
- create_table.php : 
	run it once (after editing its parameters ! ;) ) to create the data table.
- login.php :
	login script, it's the only file you'll need permanently
	to protect your pages. To be configured too.
- mypage.php :
	an example of protected page. Note that you have to add session_start() at the
	very beginning of each protected page.
- GNUGPL.txt : 
	The GNU General Public License :)

Required : PHP and MySQL

How to get it work :
1. Enter your database informations in create_table.php and login.php
2. Run create_table.php to create the table
3. Add session_start(); and include("login.php"); in all the pages you need to protect

/*************************************************************************
*                                                                        *
* This script can protect pages by asking for a login & password, read   *
* in the table that can be created with create_table.php                 *
*                                                                        *
* Copyright (C) 2004-2005 PatheticCockroach <http://www.mpam3.fr.st>     *
*                                              Revision #2               *
*                                                                        *
* This program is free software; you can redistribute it and/or modify   *
* it under the terms of the GNU General Public License as published by   *
* the Free Software Foundation; either version 2, or (at your option)    *
* any later version.                                                     *
*                                                                        *
* This program is distributed in the hope that it will be useful,        *
* but WITHOUT ANY WARRANTY; without even the implied warranty of         *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
* GNU General Public License for more details.                           *
*                                                                        *
* You should have received a copy of the GNU General Public License      *
* along with this program; if not, write to the Free Software            *
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.              *
* You can also provide yourself with an online copy of the text:         *
* <http://www.gnu.org/copyleft/gpl.html>                                 *
* <http://www.gnu.org/copyleft/gpl.txt>                                  *
*                                                                        *
*************************************************************************/
Download