Skip to content

Just a simple login and registration system made with php.

Notifications You must be signed in to change notification settings

rookiethgd/SimpleAuth-PHP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SimpleAuth-PHP

Just a simple login and registration system made with php.

Sql Table

CREATE TABLE `users` (
  `id` int NOT NULL,
  `username` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

------------------------------------------

ALTER TABLE `users`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `username` (`username`);

------------------------------------------

ALTER TABLE `users`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
COMMIT;

About

Just a simple login and registration system made with php.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published