Please wait...

View Blog

PHP Quick Login adds Login System on your websites


Posted By Administrator On 05 Feb 2015 17:53:46 Under New and Updates


With “PHP Quick Login” you can add login system on your website without using database and only with only three lines of code.

require_once 'quicklogin/quicklogin.class.php';
$quicklogin = new QuickLogin();
$quicklogin->check();

Since this script does not uses the database, it stores username and passwords in a configuration file. Configuration file has following parameters

return array(
    //Username and Passwords
    "username" => "admin",
    "password" => "admin",
    
    //Login and logout urls
    "login_url" => "http://example.com/quicklogin/login.php",
    "logout_url" => "http://example.com/quicklogin/logout.php",
    
    //Default redirect url
    "default_redir" => "http://example.com/index.php",
    
    //Maximum failed login attempts
    "max_attempts" => 5,
    
    //Lock the login system for the following duration due to failed login login attempts
    "lock_duration" => 30,
);

To purchase this script click here: Quick Login System for PHP Projects

If you have any questions or queries you can contact us



Post Comment
To post comments you need to be logged in.

0 Comments