-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwiz-dropper.php
More file actions
105 lines (72 loc) · 3.38 KB
/
wiz-dropper.php
File metadata and controls
105 lines (72 loc) · 3.38 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
/*
------------------------------------------------------------------------
Copyright (C) foBrain Tech LTD (Igweze Ebele Mark) 2010 - 2026.
Licensed under the Apache License, Version 2.0 (the 'License');
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an 'AS IS' BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License
------------------------------------------------------------------------
foBrain Open Source & wizGrade Open Source App is designed & developed
by Igweze Ebele Mark for foBrain Tech LTD
foBrain School App is Dedicated To Almighty God, My Amazing Parents,
To My Fabulous and Supporting Wife Nkiruka J.
To My Inestimable Kids Osinachi, Ifechukwu, Naetochukwu & Chimamanda.
------------------------------------------------------------------------
WEBSITE PHONES/WHATSAPP EMAILS
https://www.fobrain.com +234 - 80 30 716 751 [email protected]
https://www.fobrain.ng +234 - 80 22 000 490 [email protected]
------------------------------------------------------------------------
-------- Script Description --------
This script handle regstration dropdown
~~~~------------------------------------------------------------------------*/
define('fobrain', 'igweze'); /* define a check for wrong access of file */
require_once 'sources/functions/fobrain-dir-in.php'; /* include configuration script */
require_once $fobrainFunctionDir; /* load script functions */
require ($fobrainDBConnectIndDir); /* load connection string */
if($_REQUEST['func'] == "school-type") {
$schoolID = strip_tags($_REQUEST['school']);
if($schoolID >= $fiVal){
$supRegNo = $schoolRegSuffArr[$schoolID];
require $fobrainSchoolTBS; /* include student database table information */
$level_list = studentLevelsArray($conn);
$level_val = ""; $level = "";
foreach($level_list as $level_grade) {
$levelID = $level_grade['cl_id']; $levelVal = $level_grade['level'];
if ($levelID == $level){
$selected = "SELECTED";
} else {
$selected = "";
}
$level_val .= '<option value="'.$levelID.'"'.$selected.'>'.$levelVal.'</option>' ."\r\n";
$levelID = ""; $levelVal = "";
}
echo '
<!-- row -->
<div class="row gutters">
<div class="col-12">
<!-- field wrapper start -->
<div class="field-wrapper">
<select class="form-control required" id="cLevel" name="class">
<option value = "">Please select One</option>
'.$level_val.'
</select>
<div class="field-placeholder"> Level <span class="text-danger">*</span></div>
</div>
<!-- field wrapper end -->
</div>
</div>
<!-- /row -->';
echo '<script type="text/javascript">
renderSelect("#cLevel");
</script>';
}else{
echo '<option value="">Ooops Error, could not load school level</option>' ."\r\n";
}
}
?>