Welcome... Php5 Login Script 3.8.4

Installation...

1) Upload all files to your PHP5 server.
2) Customize constainst.php for your system name, email addresses and other settings.
3) Set custome emails to be sent in mail.php settings.
4) Run tabel.sql in your phpMyAdmin.
5) Login with user admin & password password.

Licence...

Purchasing this script allows you to download one copy and use it on one domain, please done redistribute or use on multiple domains.

Support & Questions...

Visit our forum at crispwebdesign.co.uk/login

BuGs

Thanks for downloading the script, please post any comments or bugs about this script in the forum and we will make any fixes.

Thanks...

Thanks to Matt Crisp out designer. Please link to crispwebdesign.co.uk...

Functions For Your Use

check_status ( 'page' )

protectedpage.php
This page shows you an example of a page that you want to protect with the script.

SImply include the function (as demonstrated below) to protect any php file.

<?
include_once 'include/processes.php';
$Login_Process = new Login_Process;
$Login_Process->check_status($_SERVER['SCRIPT_NAME']);
?>

welcome_note ()

anypage.php
This page showsyou an example of an unprotected page on your website.

SImply include the function (as demonstrated below) to show a link to the login (or if rembered user the username) of any php file.

<?
include_once 'include/processes.php';
$Login_Process = new Login_Process;
$Status = $Login_Process->welcome_note();
?>