-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadvisor_survey.php
More file actions
82 lines (74 loc) · 3.83 KB
/
advisor_survey.php
File metadata and controls
82 lines (74 loc) · 3.83 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
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
<?php
$url = "http///$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
$advisor_id = substr($url, strrpos($url, '?' )+1)."\n";
$advisor_id = substr($advisor_id.'/', 0, strpos($advisor_id, '/'));
$schedule_id = substr($url, strrpos($url, '/' )+1)."\n";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Check out what is going on with the CPIS Department at Farmingdale">
<meta name="viewport" content="wvalueth=device-wvalueth, initial-scale=1">
<meta name="author" content="cpis.com">
<title>Farmingdale CPIS</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/survey.css">
<link rel="shortcut icon" href="../img/favicon.ico" type="image/x-icon">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/index.js"></script>
</head>
<body>
<main>
<div class="header">
<h2 style="text-align:center;">Advisor Evaluation Survey</h2>
</div>
<div class="container">
<div class="group">
<div>
<h4>Please use this scale in your evaluation:</h4>
5 - Strongly Agree<br>
4 - Agree<br>
3 - Neither Agree Nor Disagree<br>
2 - Disagree<br>
1 - Strongly Disagree<br>
</div>
<br>
<div>
This Evaluation is confidential: when you submit the evaluation, your identity is removed from your answers
so your Advisor will not see your name. <br><br>
Click "Mark Complete" button when you have finished answering all questions.
</div>
</div>
<hr style="width:90%;margin-bottom: 30px;">
<div class="group">
<form method="POST" action="scripts/survey-input.php?<?php echo "$advisor_id/$schedule_id"?>">
<div>The advisor was organized</div>
1.<input type="radio" class="form-radio" name="organized" value="1">
2.<input type="radio" class="form-radio" name="organized" value="2">
3.<input type="radio" class="form-radio" name="organized" value="3">
4.<input type="radio" class="form-radio" name="organized" value="4">
5.<input type="radio" class="form-radio" name="organized" value="5">
<br>
<br>
<div>The advisor was helpful</div>
1.<input type="radio" class="form-radio" name="helpful" value="1">
2.<input type="radio" class="form-radio" name="helpful" value="2">
3.<input type="radio" class="form-radio" name="helpful" value="3">
4.<input type="radio" class="form-radio" name="helpful" value="4">
5.<input type="radio" class="form-radio" name="helpful" value="5">
<br>
<br>
<div>Overall, I would rate this Advisor highly.</div>
1.<input type="radio" class="form-radio" name="rating" value="1">
2.<input type="radio" class="form-radio" name="rating" value="2">
3.<input type="radio" class="form-radio" name="rating" value="3">
4.<input type="radio" class="form-radio" name="rating" value="4">
5.<input type="radio" class="form-radio" name="rating" value="5">
<br>
<button name="advisor-btn" type="submit">Mark Complete</button>
</form>
</div>
</main>
</body>
</html>