PHP

PHP MySQL Login System

Submitted by Obro Megh on
Functionalities: 1. Login. 2. Sign Up. 3. Dashboard. Installation It is pretty easy to install.First create the database and make table using this SQL code. CREATE TABLE users ( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, username VARCHAR(50) NOT NULL UNIQUE, password VARCHAR(255) NOT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP ); Then just change the config.php dbname to your database

LaraBlogger - Laravel Blogging, CMS abd CRUD Generator

Submitted by Kibb on
LaraBlogger is a Blogging CMS Template with CRUD generator Build in Laravel 5.5 Framework, With LaraBlogger you can build a new blog easly, or you can integrate to an existing webiste with ease. Features. Fully Responsive. CRUD Functionality Admin Panel Build in Voyager. Built with Laravel Framework, PHP/MySQL & HTML5/CSS3. Post Management. Modern and User friendly UI, SEO (Search Engine Optimized

Laravel Built-in User Auth: Login, Registration and Password Reset

Submitted by nurhodelta_17 on
This tutorial will teach you the build-in user login, user registration and user reset password in Laravel. The reset password will send password link to the user's email but since we are using local server, we are just going to use the laravel log to get the reset password link.