-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercises.php
More file actions
executable file
·55 lines (38 loc) · 1.29 KB
/
Exercises.php
File metadata and controls
executable file
·55 lines (38 loc) · 1.29 KB
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
<?php require "inc_header.php"; ?>
<div class="container mt-5">
<div class="row">
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<div class="card-body">
<form action="<?php $_PHP_SELF ?>" method="get">
<h5 class="card-title">What Are Irregular Verbs? </h5>
<p class="card-text">Irregular verbs are verbs that don’t take on the regular –d, -ed, or -ied spelling patterns of the past simple (V2) or past participle (V3). </p>
<button name="test1" class="btn btn-primary">TRY IT</button>
</form>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card" style="width: 18rem;">
<div class="card-body">
<form action="<?php $_PHP_SELF ?>" method="get">
<h5 class="card-title">Irregular Verb Exercises </h5>
<p class="card-text">Fill the blank spaces with the appropriate irregular verb. </p>
<button name="test2" class="btn btn-primary">TRY IT</button>
</form>
</div>
</div>
</div>
</div>
</div>
<?php
if(isset($_GET['test1']))
{
require "test1.php";
}
if(isset($_GET['test2']))
{
require "test2.php";
}
?>
<?php require "inc_footer.php"; ?>