Please wait...

View Blog

PHP Quick Login adds Login System on your websites


Posted By Ankur Gupta 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


About the Author
Ankur Gupta Avatar
Ankur Gupta

Ankur Gupta is a seasoned software developer and entrepreneur with over 20 years of experience in building innovative digital solutions. He is the founder of Vedanta Software, a SAAS-based platform specializing in Newsportal CMS and ePaper CMS for publishers across India and beyond. With deep expertise in PHP, Yii2, CodeIgniter, ReactJS, Server Management, Linux, and a growing proficiency in Node.js, Ankur is passionate about creating scalable, user-friendly web applications. He is known for his hands-on approach and dedication to quality, mentoring his team to deliver robust and efficient software solutions tailored for the digital publishing industry.