Skip to content

Macca Computer Login System. Source code for the MCLS page. Using HTML, CSS, PHP, SQL.

License

Notifications You must be signed in to change notification settings

maccacomputer/mcls

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Macca Computer Login System

Database setting

Follow these steps:

  • Go to phpMyAdmin
  • Select your database (empty)
  • Go to the SQL tab
  • sql tab
  • Add this code:
CREATE TABLE `users` (
    `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
    `username` varchar(50) NOT NULL,
    `password` varchar(255) NOT NULL,
    PRIMARY KEY (`id`),
    UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci AUTO_INCREMENT=1;
  • Now click to the GO button. The output that you see is like this:
  • user table
  • To view the structure click on the STRUCTURE button
  • And you see this:
  • structure

View the MCLS page

Open this link: https://maccacomputer.altervista.org/mcls/register.html

About

Macca Computer Login System. Source code for the MCLS page. Using HTML, CSS, PHP, SQL.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published