An open API service indexing awesome lists of open source software.

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

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'));