├── .htaccess ├── Database └── cc_db.sql ├── LICENSE ├── README.md ├── about.php ├── addassessment.php ├── addnewfaculty.php ├── addnewstudent.php ├── addvideos.php ├── adminhead.php ├── adminlogin.php ├── allfoot.php ├── allhead.php ├── askquery.php ├── assessment.php ├── css ├── bootstrap.css ├── bootstrap.min.css └── modern-business.css ├── database.php ├── error_log ├── examDetails.php ├── facultydetails.php ├── facultylogin.php ├── fhead.php ├── font-awesome ├── css │ ├── font-awesome.css │ └── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── less │ ├── bordered-pulled.less │ ├── core.less │ ├── fixed-width.less │ ├── font-awesome.less │ ├── icons.less │ ├── larger.less │ ├── list.less │ ├── mixins.less │ ├── path.less │ ├── rotated-flipped.less │ ├── spinning.less │ ├── stacked.less │ └── variables.less └── scss │ ├── _bordered-pulled.scss │ ├── _core.scss │ ├── _fixed-width.scss │ ├── _icons.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _path.scss │ ├── _rotated-flipped.scss │ ├── _spinning.scss │ ├── _stacked.scss │ ├── _variables.scss │ └── font-awesome.scss ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── footadmin.php ├── guestdetails.php ├── images ├── 14522157584_a67ab2e898_o.png ├── 1900x10801.png ├── 1900x10802.png ├── 1900x10803.png ├── 3271.jpg ├── 687474703a2f2f707265636973696f6e2d736f6674776172652e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031342f30342f6a5175726572792e676966.gif ├── 7fb1f193435815a86c8484f82b9589e1 - Copy.jpg ├── 7fb1f193435815a86c8484f82b9589e1.jpg ├── Hopeful_student_1.jpg ├── Javascript-shopping-cart.png ├── Returning-Student.jpg ├── apache_webserver_logo.png ├── favicon.ico ├── favicon2-1.jpg ├── happy_student4.jpg ├── library_guy_900x400.jpg ├── maxresdefault.jpg ├── new │ ├── 20160518144520.jpg │ ├── 253f9ac.jpg │ ├── Lærer-studerende-på-UCN.jpg │ ├── sif10225.225782846266003821356.jpg │ ├── teacher2.jpg │ ├── teacher222223.jpg │ └── young_woman_with_laptop_english_teacher_visual_stage.jpg ├── photothumb.db ├── smilingFemaleStudent.jpg └── welcome46.jpg ├── index.php ├── js ├── bootstrap.js ├── bootstrap.min.js ├── contact_me.js ├── jqBootstrapValidation.js └── jquery.js ├── loginlinkadmin.php ├── loginlinkfaculty.php ├── loginlinkstudent.php ├── logoutadmin.php ├── logoutfaculty.php ├── logoutstudent.php ├── makeresult.php ├── manageassessment.php ├── manageassessment2.php ├── managevideos.php ├── managevideos2.php ├── mydetailsfaculty.php ├── mydetailsstudent.php ├── postquerypublic.php ├── qureydetails.php ├── registrationform.php ├── resultdetails.php ├── studentdetails.php ├── studenthead.php ├── studentlogin.php ├── takeassessment.php ├── takeassessment2.php ├── updatedetailsfromfaculty.php ├── updatedetailsfromstudent.php ├── updatefaculty.php ├── updateguest.php ├── updatequery.php ├── updateresultdetails.php ├── updatestudent.php ├── videos.php ├── viewquery.php ├── viewresult.php ├── viewstudentdetails.php ├── viewvideos.php ├── viewvideos2.php ├── welcomeadmin.php ├── welcomefaculty.php └── welcomestudent.php /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteRule ^([^\.]+)$ $1.php [NC,L] 4 | -------------------------------------------------------------------------------- /Database/cc_db.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 4.5.1 3 | -- http://www.phpmyadmin.net 4 | -- 5 | -- Host: 127.0.0.1 6 | -- Generation Time: May 27, 2018 at 07:10 PM 7 | -- Server version: 10.1.16-MariaDB 8 | -- PHP Version: 7.0.9 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | SET time_zone = "+00:00"; 12 | 13 | 14 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 15 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 16 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 17 | /*!40101 SET NAMES utf8mb4 */; 18 | 19 | -- 20 | -- Database: `cc_db` 21 | -- 22 | 23 | -- -------------------------------------------------------- 24 | 25 | -- 26 | -- Table structure for table `admin` 27 | -- 28 | 29 | CREATE TABLE `admin` ( 30 | `Aid` varchar(35) NOT NULL, 31 | `Apass` varchar(35) NOT NULL 32 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 33 | 34 | -- 35 | -- Dumping data for table `admin` 36 | -- 37 | 38 | INSERT INTO `admin` (`Aid`, `Apass`) VALUES 39 | ('admin@ics.com', 'admin'), 40 | ('vishu', 'vishu'); 41 | 42 | -- -------------------------------------------------------- 43 | 44 | -- 45 | -- Table structure for table `examans` 46 | -- 47 | 48 | CREATE TABLE `examans` ( 49 | `EAnsID` int(50) NOT NULL, 50 | `ExamID` int(10) NOT NULL, 51 | `Senrl` varchar(50) NOT NULL, 52 | `Sname` varchar(50) NOT NULL, 53 | `Ans1` mediumtext NOT NULL, 54 | `Ans2` mediumtext NOT NULL, 55 | `Ans3` mediumtext NOT NULL, 56 | `Ans4` mediumtext NOT NULL, 57 | `Ans5` mediumtext NOT NULL 58 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 59 | 60 | -- 61 | -- Dumping data for table `examans` 62 | -- 63 | 64 | INSERT INTO `examans` (`EAnsID`, `ExamID`, `Senrl`, `Sname`, `Ans1`, `Ans2`, `Ans3`, `Ans4`, `Ans5`) VALUES 65 | (1, 3, '146891659', 'hello hello', 'a', 'b', 'c', 'd', 'e'), 66 | (2, 4, '146891659', 'hello hello', 'q', 'q', 'q', 'q', 'q'), 67 | (3, 7, '146891659', 'hello hello', 'q', 'q', 'q', 'q', 'q'); 68 | 69 | -- -------------------------------------------------------- 70 | 71 | -- 72 | -- Table structure for table `examdetails` 73 | -- 74 | 75 | CREATE TABLE `examdetails` ( 76 | `ExamID` int(50) NOT NULL, 77 | `ExamName` varchar(50) NOT NULL, 78 | `Q1` varchar(10000) NOT NULL, 79 | `Q2` varchar(10000) NOT NULL, 80 | `Q3` varchar(10000) NOT NULL, 81 | `Q4` varchar(10000) NOT NULL, 82 | `Q5` varchar(10000) NOT NULL 83 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 84 | 85 | -- 86 | -- Dumping data for table `examdetails` 87 | -- 88 | 89 | INSERT INTO `examdetails` (`ExamID`, `ExamName`, `Q1`, `Q2`, `Q3`, `Q4`, `Q5`) VALUES 90 | (4, 'HTML', 'What is the previous version of HTML, prior to HTML5?', ' What does HTML stand for?', 'Who is making the Web standards?', 'Choose the correct HTML element for the largest heading:', 'What is the correct HTML element for inserting a line break?'), 91 | (5, ' PHP', ' What does PHP stand for?', 'PHP server scripts are surrounded by delimiters, which?', 'How do you write "Hello World" in PHP', ' All variables in PHP start with which symbol?', 'What is the correct way to end a PHP statement?'), 92 | (6, 'SQL', 'What does SQL stand for?', 'Which SQL statement is used to extract data from a database?', 'Which SQL statement is used to update data in a database?', 'Which SQL statement is used to delete data from a database?', 'Which SQL statement is used to insert new data in a database?'), 93 | (9, 'JavaScript', 'Inside which HTML element do we put the JavaScript?', 'What is the correct JavaScript syntax to change the content of the HTML element below?\r\n\r\n\r\n
This is a demonstration.
', 'Where is the correct place to insert a JavaScript?', 'What is the correct syntax for referring to an external script called "xxx.js"?', 'The external JavaScript file must contain the 205 | 206 | 207 | 208 | 209 | 210 | 215 | 216 |