forked from aligator4sah/Telehealth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataManagement1.php
82 lines (68 loc) · 2.31 KB
/
DataManagement1.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
<!DOCTYPE html><html lang="en">
<head>
<!-- Basic informations -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Site informations -->
<title>TeleHealth Datamanagement</title>
<!-- Open Graph -->
<meta property="og:title" content="Free Aurora Template">
<meta property="og:description" content="Free HTML5 Template created by Dominik Serafin.">
<meta property="og:url" content="http://serafin.io/aurora-template/">
<meta property="og:image" content="http://serafin.io/aurora-template/content/og_image.png">
<!-- Fonts -->
<link href="style/fonts/webfont-raleway/webfont-raleway.css" rel="stylesheet" type="text/css">
<link href="style/fonts/webfont-font-awesome/css/font-awesome.css" rel="stylesheet" type="text/css">
<!-- Stylesheets -->
<link href="style/css/global.css" type="text/css" rel="stylesheet" media="all">
<style>
.button {
background-color: transparent;
border: 3px solid #ccc;
color: whilte;
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
cursor: pointer;
}
</style>
</head>
<body>
<form action="FinalGraph1.php" method="post">
<ol>
<?php foreach($rows as $row): ?>
<li>
<label><?php echo ($row['description']); ?></label>
<div class="radio">
<label>
<input type="radio" name="optionsRadios<?php echo htmlentities($row['questionid']); ?>" value="Yes">
Yes
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios<?php echo htmlentities($row['questionid']); ?>" value="No">
No
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios<?php echo htmlentities($row['questionid']); ?>" value="Dont Know">
Don't Know
</label>
</div> <br>
</li>
<?php endforeach; ?>
</ol>
<button type="submit" class="button" onclick = "sendTo">Done</button>
<script src="http://code.jquery.com/jquery-1.9.1.js">
function sendTo(){
ajax to 'test.php';
send to 'FinalGraph1.php';
}
</script>
</form>
</body>