https://github.com/astronomersiva/cynapse
A quiz app using PHP and MySQL
https://github.com/astronomersiva/cynapse
Last synced: about 2 months ago
JSON representation
A quiz app using PHP and MySQL
- Host: GitHub
- URL: https://github.com/astronomersiva/cynapse
- Owner: astronomersiva
- Created: 2014-07-14T12:34:08.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-07-24T16:20:49.000Z (almost 11 years ago)
- Last Synced: 2025-01-21T20:49:08.867Z (3 months ago)
- Language: PHP
- Size: 973 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Cynapse
=======A quiz app using PHP and MySQL
Create a database named 'quiz'.
CREATE TABLE IF NOT EXISTS `users` (
`id` int(12) NOT NULL AUTO_INCREMENT,
`user_name` varchar(50) NOT NULL,
`score` int(11) NOT NULL,
`password` varchar(32) NOT NULL,
`category_id` varchar(32),
PRIMARY KEY (`id`)
);CREATE TABLE IF NOT EXISTS `authusers` (
`id` int(12) NOT NULL AUTO_INCREMENT,
`user_name` varchar(50) NOT NULL,
`password` varchar(32) NOT NULL,
PRIMARY KEY (`id`)
);INSERT INTO `authusers` (user_name, password) VALUES ('admin', md5('admin'));