Skip to main content

Posts

Showing posts with the label Sessions

Effortless User Registration and Login with Sessions and Cookies in PHP

Simple Registration Login with Session and Cookie We will complete this "Simple Registration/Login" in two steps: 1) Database. 2) Design and PHP code/Connecting to the Database. But before we can start, first of all, you need to install the Web Server like Xampp / Wampp . I have a Xampp So let's get started: 1) Database: a) Open your browser and write in the browser's address bar: ' localhost/phpmyadmin ' and then enter the Admin panel of MySQL database will open. b) Left upper corner you can see ' new ' click on that and create your database by writing 'Database_name' and clicking  the ' Go ' button. c) Go to the ' SQL ' tab and copy & paste the below code and click on the ' Go ' button -- phpMyAdmin SQL Dump -- version 4.8.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Mar 28, 2019 at 08:23 AM -- Server version: 10.1.37-MariaDB -...