-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_complete.php
50 lines (49 loc) · 1.65 KB
/
index_complete.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
<?php
/**
* This program tests the effect of capitalisation on reading speed.
* Copyright (C) 2009 Cathy Fitzpatrick <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
define('IN_READING', true);
require_once('common.php');
?>
<html>
<head>
<title>Reading comprehension experiment</title>
<style text="text/css">
div#main {
width: 500px;
}
</style>
<script type="text/javascript">
function begin() {
if (confirm("Please read the whole page before you begin. You are timed once the test begins. Begin the test now?")) {
window.location = "test.php";
}
}
</script>
</head>
<body>
<div id="main">
<h3>A study on reading</h3>
<p>The purpose of this study is to measure the effect of capitalisation
on reading speed. Subjects were randomly shown two out of four tests, randomly with
or without capitals, and asked to answer questions on these passages. The time to complete
the test and answers to the questions were recored.</p>
<p>The results are now available.</p>
<p><a href="report.php">View results</a>.</p>
</div>
</body>
</html>