Last active
August 15, 2018 16:28
-
-
Save rigwild/f3b2f9ed600308fa1714988e20aca6ad to your computer and use it in GitHub Desktop.
A PHP secure login cookie system
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `logsession` ( | |
`sess_id` varchar(100) NOT NULL, | |
`sess_hash` varchar(100) NOT NULL, | |
`sess_timeout` timestamp NOT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment