├── Student ├── index.php ├── Imgs │ ├── data.txt │ ├── Biology │ │ └── data.txt │ ├── Chemistry │ │ └── data.txt │ └── Physics │ │ └── data.txt ├── English │ ├── saveTime.php │ ├── next.php │ ├── updateSub.php │ ├── updatePallete.php │ ├── mark.php │ ├── clear.php │ ├── save.php │ └── eng_jump.php ├── Gujarati │ ├── saveTime.php │ ├── next.php │ ├── updateSub.php │ ├── updatePallete.php │ ├── mark.php │ ├── clear.php │ ├── save.php │ └── guj_jump.php ├── Check │ ├── endExam.php │ └── startexam.php ├── exam.php ├── JS │ └── exambegin.js ├── thanks.php └── Parts │ ├── nonverified.php │ └── updateEmail.php ├── Images ├── data.txt ├── bg.jpg ├── bgpencil.png └── underconstruction.png ├── Ads ├── Min │ ├── data.txt │ ├── index.php │ ├── logout.php │ ├── a_login.php │ ├── Action │ │ ├── removeAdmin.php │ │ ├── addAdmin.php │ │ ├── sendreply.php │ │ └── addStudent.php │ ├── loginCheck.php │ ├── Change │ │ └── changepassword.php │ ├── contacts.php │ ├── Subs │ │ ├── addquestion.php │ │ ├── biology.php │ │ ├── chemistry.php │ │ └── physics.php │ ├── questions.php │ ├── sendemail.php │ ├── trial.php │ ├── Commen │ │ └── header.php │ ├── replymail.php │ ├── edit.php │ ├── AdminLogin.php │ ├── admins.php │ └── students.php └── AdminDb │ ├── data.txt │ └── dbconnect.php ├── Files ├── data.txt ├── email.PNG ├── loginpage.PNG ├── examInstrpage.png ├── examgoingENG.PNG ├── examgoingGUJ.PNG └── registration.PNG ├── logout.php ├── Db └── dbconnect.php ├── yo.php ├── Check ├── login.php ├── contact.php └── register.php ├── join.php ├── JS ├── donate.js ├── result.js ├── nonvarified.js ├── contact.js ├── login.js └── page.js ├── registerStudent.php ├── loginStudent.php ├── verify.php ├── README.md ├── results.php ├── donate.php ├── CSS └── kel.css ├── Parts ├── nonverified.php └── updateEmail.php ├── login.php ├── index.php ├── contact.php ├── yogg.php └── yogg1.php /Student/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Images/data.txt: -------------------------------------------------------------------------------- 1 | folder contains the images 2 | -------------------------------------------------------------------------------- /Student/Imgs/data.txt: -------------------------------------------------------------------------------- 1 | Here we put question images -------------------------------------------------------------------------------- /Ads/Min/data.txt: -------------------------------------------------------------------------------- 1 | Here, all the admin files are being stored 2 | -------------------------------------------------------------------------------- /Files/data.txt: -------------------------------------------------------------------------------- 1 | Here you can upload your answer keys images and all -------------------------------------------------------------------------------- /Ads/AdminDb/data.txt: -------------------------------------------------------------------------------- 1 | In this folder admin's connection will happen to the db. 2 | -------------------------------------------------------------------------------- /Images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelta-King/NEET-Exam/HEAD/Images/bg.jpg -------------------------------------------------------------------------------- /Files/email.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelta-King/NEET-Exam/HEAD/Files/email.PNG -------------------------------------------------------------------------------- /Student/Imgs/Biology/data.txt: -------------------------------------------------------------------------------- 1 | Make 2 Gujarati folders and add question images accordingly -------------------------------------------------------------------------------- /Student/Imgs/Chemistry/data.txt: -------------------------------------------------------------------------------- 1 | Make 2 Gujarati folders and add question images accordingly -------------------------------------------------------------------------------- /Student/Imgs/Physics/data.txt: -------------------------------------------------------------------------------- 1 | Make 2 Gujarati folders and add question images accordingly -------------------------------------------------------------------------------- /Files/loginpage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelta-King/NEET-Exam/HEAD/Files/loginpage.PNG -------------------------------------------------------------------------------- /Images/bgpencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelta-King/NEET-Exam/HEAD/Images/bgpencil.png -------------------------------------------------------------------------------- /Files/examInstrpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelta-King/NEET-Exam/HEAD/Files/examInstrpage.png -------------------------------------------------------------------------------- /Files/examgoingENG.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelta-King/NEET-Exam/HEAD/Files/examgoingENG.PNG -------------------------------------------------------------------------------- /Files/examgoingGUJ.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelta-King/NEET-Exam/HEAD/Files/examgoingGUJ.PNG -------------------------------------------------------------------------------- /Files/registration.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelta-King/NEET-Exam/HEAD/Files/registration.PNG -------------------------------------------------------------------------------- /Ads/Min/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Images/underconstruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelta-King/NEET-Exam/HEAD/Images/underconstruction.png -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ads/Min/logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ads/AdminDb/dbconnect.php: -------------------------------------------------------------------------------- 1 | connect_error) 11 | { 12 | die("something went wrong:$conn->connect_error"); 13 | } 14 | 15 | ?> -------------------------------------------------------------------------------- /Db/dbconnect.php: -------------------------------------------------------------------------------- 1 | connect_error) 11 | { 12 | die("something went wrong:$conn->connect_error"); 13 | } 14 | 15 | ?> -------------------------------------------------------------------------------- /Ads/Min/a_login.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Student/English/saveTime.php: -------------------------------------------------------------------------------- 1 | query($query)){ 17 | 18 | } 19 | else{ 20 | die("Something went wrong"); 21 | } 22 | 23 | $conn->close(); 24 | } 25 | else{ 26 | die("Nope"); 27 | } 28 | 29 | ?> -------------------------------------------------------------------------------- /Student/Gujarati/saveTime.php: -------------------------------------------------------------------------------- 1 | query($query)){ 17 | 18 | } 19 | else{ 20 | die("Something went wrong"); 21 | } 22 | 23 | $conn->close(); 24 | } 25 | else{ 26 | die("Nope"); 27 | } 28 | 29 | ?> -------------------------------------------------------------------------------- /Ads/Min/Action/removeAdmin.php: -------------------------------------------------------------------------------- 1 | query($query)){ 20 | 21 | } 22 | else{ 23 | echo "Something went wrong"; 24 | } 25 | } 26 | else{ 27 | header('Location:https://keltaking.co/Exams/Ads/min/logout'); 28 | } 29 | ?> -------------------------------------------------------------------------------- /Student/English/next.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yo.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | $apiKey, "numbers" => $numbers, "sender" => $sender, "message" => $message); 15 | // Send the POST request with cURL 16 | $ch = curl_init("https://api.textlocal.in/send/"); 17 | curl_setopt($ch, CURLOPT_POST, true); 18 | curl_setopt($ch, CURLOPT_POSTFIELDS, $data); 19 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 20 | $response = curl_exec($ch); 21 | curl_close($ch); 22 | // Process your response here 23 | echo $response; 24 | ?> 25 | -------------------------------------------------------------------------------- /Student/Gujarati/next.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Student/Check/endExam.php: -------------------------------------------------------------------------------- 1 | query($query)){ 16 | unset($_SESSION['exam_subject']); 17 | unset($_SESSION['exam_start']); 18 | unset($_SESSION['student_lang']); 19 | } 20 | else{ 21 | echo "Something went wrong"; 22 | } 23 | 24 | $conn->close(); 25 | } 26 | else{ 27 | die("Something went wrong"); 28 | } 29 | 30 | ?> -------------------------------------------------------------------------------- /Student/English/updateSub.php: -------------------------------------------------------------------------------- 1 | query($query)){ 19 | 20 | $rslt = $d->fetch_assoc(); 21 | echo $rslt['COUNT(q_id)']; 22 | 23 | } 24 | else{ 25 | echo "Something went wrong"; 26 | } 27 | 28 | $conn->close(); 29 | 30 | } 31 | else{ 32 | die("Nothing changed"); 33 | } 34 | 35 | ?> -------------------------------------------------------------------------------- /Student/Gujarati/updateSub.php: -------------------------------------------------------------------------------- 1 | query($query)){ 19 | 20 | $rslt = $d->fetch_assoc(); 21 | echo $rslt['COUNT(q_id)']; 22 | 23 | } 24 | else{ 25 | echo "Something went wrong"; 26 | } 27 | 28 | $conn->close(); 29 | 30 | } 31 | else{ 32 | die("Nothing changed"); 33 | } 34 | 35 | ?> -------------------------------------------------------------------------------- /Check/login.php: -------------------------------------------------------------------------------- 1 | query($query)){ 14 | 15 | if($data->num_rows > 0){ 16 | 17 | while($result = $data->fetch_assoc()){ 18 | $dbpass = $result['s_pass']; 19 | 20 | if(password_verify($pass, $dbpass)){ 21 | $_SESSION['login'] = "yes"; 22 | } 23 | else{ 24 | echo "incorrect password"; 25 | } 26 | } 27 | } 28 | else{ 29 | echo "incorrect Roll No or Password"; 30 | } 31 | 32 | } 33 | else{ 34 | echo "something went wrong"; 35 | } 36 | 37 | $conn->close(); 38 | 39 | } 40 | else{ 41 | die("Something went wrong"); 42 | } 43 | 44 | ?> -------------------------------------------------------------------------------- /join.php: -------------------------------------------------------------------------------- 1 | query($q)){ 16 | 17 | $rslt = $d->fetch_assoc(); 18 | 19 | if($rslt['verified'] == '1'){ 20 | header("Location:Student/startTest"); 21 | } 22 | else{ 23 | ?> 24 | 25 | 26 | 27 | 38 | close(); 41 | } 42 | else{ 43 | header("Location:logout"); 44 | } 45 | 46 | ?> -------------------------------------------------------------------------------- /Student/exam.php: -------------------------------------------------------------------------------- 1 | close(); 37 | } 38 | else{ 39 | header("Location:../logout"); 40 | } 41 | ?> -------------------------------------------------------------------------------- /JS/donate.js: -------------------------------------------------------------------------------- 1 | function onClick(element) { 2 | document.getElementById("img01").src = element.src; 3 | document.getElementById("modal01").style.display = "block"; 4 | var captionText = document.getElementById("caption"); 5 | captionText.innerHTML = element.alt; 6 | } 7 | 8 | // Change style of navbar on scroll 9 | window.onscroll = function() {myFunction()}; 10 | function myFunction() { 11 | var navbar = document.getElementById("myNavbar"); 12 | if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) { 13 | navbar.className = "w3-bar" + " w3-card" + " w3-animate-top" + " w3-white"; 14 | } else { 15 | navbar.className = navbar.className.replace(" w3-card w3-animate-top w3-white", ""); 16 | } 17 | } 18 | 19 | // Used to toggle the menu on small screens when clicking on the menu button 20 | function toggleFunction() { 21 | var x = document.getElementById("navDemo"); 22 | if (x.className.indexOf("w3-show") == -1) { 23 | x.className += " w3-show"; 24 | } else { 25 | x.className = x.className.replace(" w3-show", ""); 26 | } 27 | } -------------------------------------------------------------------------------- /JS/result.js: -------------------------------------------------------------------------------- 1 | function onClick(element) { 2 | document.getElementById("img01").src = element.src; 3 | document.getElementById("modal01").style.display = "block"; 4 | var captionText = document.getElementById("caption"); 5 | captionText.innerHTML = element.alt; 6 | } 7 | 8 | // Change style of navbar on scroll 9 | window.onscroll = function() {myFunction()}; 10 | function myFunction() { 11 | var navbar = document.getElementById("myNavbar"); 12 | if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) { 13 | navbar.className = "w3-bar" + " w3-card" + " w3-animate-top" + " w3-white"; 14 | } else { 15 | navbar.className = navbar.className.replace(" w3-card w3-animate-top w3-white", ""); 16 | } 17 | } 18 | 19 | // Used to toggle the menu on small screens when clicking on the menu button 20 | function toggleFunction() { 21 | var x = document.getElementById("navDemo"); 22 | if (x.className.indexOf("w3-show") == -1) { 23 | x.className += " w3-show"; 24 | } else { 25 | x.className = x.className.replace(" w3-show", ""); 26 | } 27 | } -------------------------------------------------------------------------------- /Ads/Min/Action/addAdmin.php: -------------------------------------------------------------------------------- 1 | 12 21 | ]; 22 | 23 | $admin_pass = password_hash($admin_pass, PASSWORD_BCRYPT, $opt); 24 | $query = "INSERT INTO `admins`(a_name, a_number, a_pass, a_type) VALUES ('$admin_name', $admin_id, '$admin_pass', '$admin_type')"; 25 | if($conn->query($query)){ 26 | 27 | } 28 | else{ 29 | echo "Already registered"; 30 | } 31 | } 32 | else{ 33 | header('Location:https://keltaking.co/Exams/Ads/min/logout'); 34 | } 35 | ?> -------------------------------------------------------------------------------- /Student/English/updatePallete.php: -------------------------------------------------------------------------------- 1 | query($q)) 17 | { 18 | while($rr = $dd->fetch_assoc()){ 19 | ?> 20 |
The contact details are:
Name: '.$name.'
Email: '.$email.'
problem: '.$problem.'
Message: '.$msg.'
| Name | Catagory | problem | Reply | |
|---|---|---|---|---|
| 39 | | 40 | 43 | | 44 |45 | 48 | | 49 |