├── .github └── FUNDING.yml ├── DB └── php-kuiz.sql ├── LICENSE ├── README.md ├── add.php ├── admin.php ├── adminhome.php ├── allquestions.php ├── connection.php ├── css ├── style.css └── style1.css ├── editquestion.php ├── exit.php ├── home.php ├── index.php ├── login_details.txt ├── players.php ├── process.php ├── question.php └── results.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /DB/php-kuiz.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/DB/php-kuiz.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/README.md -------------------------------------------------------------------------------- /add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/add.php -------------------------------------------------------------------------------- /admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/admin.php -------------------------------------------------------------------------------- /adminhome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/adminhome.php -------------------------------------------------------------------------------- /allquestions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/allquestions.php -------------------------------------------------------------------------------- /connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/connection.php -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/css/style.css -------------------------------------------------------------------------------- /css/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/css/style1.css -------------------------------------------------------------------------------- /editquestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/editquestion.php -------------------------------------------------------------------------------- /exit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/exit.php -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/home.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/index.php -------------------------------------------------------------------------------- /login_details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/login_details.txt -------------------------------------------------------------------------------- /players.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/players.php -------------------------------------------------------------------------------- /process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/process.php -------------------------------------------------------------------------------- /question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/question.php -------------------------------------------------------------------------------- /results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirbandutta9/PHP_KUIZ/HEAD/results.php --------------------------------------------------------------------------------