-
Notifications
You must be signed in to change notification settings - Fork 1
/
view_account.php
210 lines (187 loc) · 7.81 KB
/
view_account.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<?php
include("db.php"); //include auth.php file on all secure pages
include("auth.php");
$sql = mysql_query("SELECT * from deductions WHERE deduction_id='1'");
while($row = mysql_fetch_array($sql))
{
$phil = $row['philhealth'];
$bir = $row['bir'];
$gsis = $row['gsis'];
$love = $row['pag_ibig'];
$loans = $row['loans'];
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Bootstrap, a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.">
<meta name="keywords" content="HTML, CSS, JS, JavaScript, framework, bootstrap, front-end, frontend, web development">
<meta name="author" content="Aryan and Isshita">
<title></title>
<script>
<!--
var ScrollMsg= "Employee Management Information System"
var CharacterPosition=0;
function StartScrolling() {
document.title=ScrollMsg.substring(CharacterPosition,ScrollMsg.length)+
ScrollMsg.substring(0, CharacterPosition);
CharacterPosition++;
if(CharacterPosition > ScrollMsg.length) CharacterPosition=0;
window.setTimeout("StartScrolling()",150); }
StartScrolling();
// -->
</script>
<link href="assets/must.png" rel="shortcut icon">
<link href="assets/css/justified-nav.css" rel="stylesheet">
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- <link href="data:text/css;charset=utf-8," data-href="assets/css/bootstrap-theme.min.css" rel="stylesheet" id="bs-theme-stylesheet"> -->
<!-- <link href="assets/css/docs.min.css" rel="stylesheet"> -->
<link href="assets/css/search.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="assets/css/styles.css" /> -->
<link rel="stylesheet" type="text/css" href="assets/css/dataTables.min.css">
</head>
<body>
<div class="container">
<div class="masthead">
<h3>
<b><a href="index.php">Employee Management Information System</a></b>
<a data-toggle="modal" href="#colins" class="pull-right"><b><?php echo $_SESSION['username']; ?> 🎓</b></a>
</h3>
<nav>
<ul class="nav nav-justified">
<li class="active">
<a href="">Employee</a>
</li>
<li>
<a href="home_deductions.php">Deduction/s</a>
</li>
<li>
<a href="home_salary.php">Income</a>
</li>
</ul>
</nav>
</div><br><br>
<?php
$id=$_REQUEST['emp_id'];
$query = "SELECT * from employee where emp_id='".$id."'";
$result = mysql_query($query) or die ( mysql_error());
$query = mysql_query("SELECT * from overtime");
while($row=mysql_fetch_array($query))
{
$rate = $row['rate'];
}
$query = mysql_query("SELECT * from salary");
while($row=mysql_fetch_array($query))
{
$salary = $row['salary_rate'];
}
while ($row = mysql_fetch_assoc($result))
{
$overtime = $row['overtime'] * $rate;
$bonus = $row['bonus'];
$deduction = $row['deduction'];
$income = $overtime + $bonus + $salary;
$netpay = $income - $deduction;
?>
<form class="form-horizontal" action="update_account.php" method="post" name="form">
<input type="hidden" name="new" value="1" />
<input name="id" type="hidden" value="<?php echo $row['emp_id'];?>" />
<div class="form-group">
<label class="col-sm-5 control-label"></label>
<div class="col-sm-4">
<h2><?php echo $row['lname']; ?>, <?php echo $row['fname']; ?></h2>
</div>
</div>
<div class="form-group">
<label class="col-sm-5 control-label">Deduction/s :</label>
<div class="col-sm-4">
<select name="deduction" class="form-control" required>
<option value=""><?php echo $row['deduction'];?></option>
<option value="<?php echo $phil; ?>">Medical Allowance</option>
<option value="<?php echo $bir; ?>">HRA</option>
<option value="<?php echo $gsis; ?>">DA</option>
<option value="<?php echo $love; ?>">Others</option>
<option value="<?php echo $loans; ?>">Loans</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-5 control-label">Overtime :</label>
<div class="col-sm-4">
<input type="text" name="overtime" class="form-control" value="<?php echo $row['overtime'];?>" required="required">
</div>
</div>
<div class="form-group">
<label class="col-sm-5 control-label">Bonus :</label>
<div class="col-sm-4">
<input type="text" name="bonus" class="form-control" value="<?php echo $row['bonus'];?>" required="required">
</div>
</div><br><br>
<div class="form-group">
<label class="col-sm-5 control-label">Netpay :</label>
<div class="col-sm-4">
<?php echo $netpay;?>.00
</div>
</div><br><br>
<div class="form-group">
<label class="col-sm-5 control-label"></label>
<div class="col-sm-4">
<input type="submit" name="submit" value="Update" class="btn btn-danger">
<a href="home_employee.php" class="btn btn-primary">Cancel</a>
</div>
</div>
</form>
<?php
}
?>
<!-- this modal is for my Colins -->
<div class="modal fade" id="colins" role="dialog">
<div class="modal-dialog modal-sm">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:20px 50px;">
<button type="button" class="close" data-dismiss="modal" title="Close">×</button>
<h3 align="center">You are logged in as <b><?php echo $_SESSION['username']; ?></b></h3>
</div>
<div class="modal-body" style="padding:40px 50px;">
<div align="center">
<a href="logout.php" class="btn btn-block btn-danger">Logout</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<!-- <script src="assets/js/docs.min.js"></script> -->
<script src="assets/js/search.js"></script>
<script type="text/javascript" charset="utf-8" language="javascript" src="assets/js/dataTables.min.js"></script>
<!-- FOR DataTable -->
<script>
{
$(document).ready(function()
{
$('#myTable').DataTable();
});
}
</script>
<!-- this function is for modal -->
<script>
$(document).ready(function()
{
$("#myBtn").click(function()
{
$("#myModal").modal();
});
});
</script>
</body>
</html>