-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddquestion.php
44 lines (44 loc) · 1.55 KB
/
addquestion.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
<html>
<head>
<title>Arithmetic</title>
<link rel="stylesheet" href="tracks.css">
</head>
<body>
<main>
<div class="container">
<h1>Make a Question</h1>
<form method="post" action="add.php">
<p>
<label>Question ID:</label>
<input type="text" name="question_ID"/>
</p>
<p>
<label>Question Text:</label>
<input type="text" name="question_text"/>
</p>
<p>
<label>Choice #1:</label>
<input type="text" name="choice1"/>
</p>
<p>
<label>Choice #2:</label>
<input type="text" name="choice1"/>
</p>
<p>
<label>Choice #3:</label>
<input type="text" name="choice1"/>
</p>
<p>
<label>Choice #4:</label>
<input type="text" name="choice1"/>
</p>
<p>
<label>Correct Choice Number:</label>
<input type="number" name="correct_choice"/>
</p>
<p>
<input type="text" name="submit" value="submit"/>
</form>
</div>
</main>
</body>