-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathadd.php
102 lines (86 loc) · 2.89 KB
/
add.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php session_start(); ?>
<?php include "connection.php";
if (isset($_SESSION['admin'])) {
if(isset($_POST['submit'])) {
$question =htmlentities(mysqli_real_escape_string($conn , $_POST['question']));
$choice1 = htmlentities(mysqli_real_escape_string($conn , $_POST['choice1']));
$choice2 = htmlentities(mysqli_real_escape_string($conn , $_POST['choice2']));
$choice3 = htmlentities(mysqli_real_escape_string($conn , $_POST['choice3']));
$choice4 = htmlentities(mysqli_real_escape_string($conn , $_POST['choice4']));
$correct_answer = mysqli_real_escape_string($conn , $_POST['answer']);
$checkqsn = "SELECT * FROM questions";
$runcheck = mysqli_query($conn , $checkqsn) or die(mysqli_error($conn));
$qno = mysqli_num_rows($runcheck) + 1;
$query = "INSERT INTO questions(qno, question , ans1, ans2, ans3, ans4, correct_answer) VALUES ('$qno' , '$question' , '$choice1' , '$choice2' , '$choice3' , '$choice4' , '$correct_answer') " ;
$run = mysqli_query($conn , $query) or die(mysqli_error($conn));
if (mysqli_affected_rows($conn) > 0 ) {
echo "<script>alert('Question successfully added'); </script> " ;
}
else {
"<script>alert('error, try again!'); </script> " ;
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>PHP-Kuiz</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<h1>PHP-Kuiz</h1>
<a href="index.php" class="start">Home</a>
<a href="add.php" class="start">Add Question</a>
<a href="allquestions.php" class="start">All Questions</a>
<a href="players.php" class="start">Players</a>
<a href="exit.php" class="start">Logout</a>
</div>
</header>
<main>
<div class="container">
<h2>Add a question...</h2>
<form method="post" action="">
<p>
<label>Question</label>
<input type="text" name="question" required="">
</p>
<p>
<label>Choice #1</label>
<input type="text" name="choice1" required="">
</p>
<p>
<label>Choice #2</label>
<input type="text" name="choice2" required="">
</p>
<p>
<label>Choice #3</label>
<input type="text" name="choice3" required="">
</p>
<p>
<label>Choice #4</label>
<input type="text" name="choice4" required="">
</p>
<p>
<label>Correct answer</label>
<select name="answer">
<option value="a">Choice #1 </option>
<option value="b">Choice #2</option>
<option value="c">Choice #3</option>
<option value="d">Choice #4</option>
</select>
</p>
<p>
<input type="submit" name="submit" value="Submit">
</p>
</form>
</div>
</main>
</body>
</html>
<?php }
else {
header("location: admin.php");
}
?>