Facebook
From Denim Bee, 4 Years ago, written in Plain Text.
This paste is a reply to slq kodu from Abrupt Hog - go back
Embed
Viewing differences between slq kodu and Re: slq kodu
CREATE DATABASE login;

USE login; 

CREATE TABLE users (
        id int auto_increment,
        primary key(id),
        username varchar(100) unique,
        password varchar(300)
);
// Initialize the session
session_start();
 
// Unset all of the session variables
$_SESSION = array();
 
// Destroy the session.
session_destroy();
 
// Redirect to login page
header("location: login.php");
exit;
?>

Replies to Re: slq kodu rss

Title Name Language When
Re: Re: slq kodu Innocent Meerkat text 4 Years ago.