-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
178 lines (153 loc) · 6.41 KB
/
index.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
<?php
include("auth.php"); //include auth.php file on all secure pages
include("add_employee.php");
?>
<?php
$conn = mysql_connect('localhost', 'root', '');
if (!$conn)
{
die("Database Connection Failed" . mysql_error());
}
$select_db = mysql_select_db('payroll');
if (!$select_db)
{
die("Database Selection Failed" . mysql_error());
}
$query = mysql_query("SELECT * from deductions");
while($row=mysql_fetch_array($query))
{
$id = $row['deduction_id'];
$philhealth = $row['philhealth'];
$bir = $row['bir'];
$gsis = $row['gsis'];
$love = $row['pag_ibig'];
$loans = $row['loans'];
$total = $philhealth + $bir + $gsis + $love + $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, Aastha, Ankita 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">
<link rel="stylesheet" href="assets/css/aryan.css">
</head>
<body>
<div class="container">
<div class="masthead">
<h3>
<b>WELCOME</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><a href="home_employee.php">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>
<!-- Jumbotron -->
<div class="jumbotron">
<h1>Employee Management System</h1>
<p class="lead">Everything counts here</p>
<!-- <p><a data-toggle="modal" class="btn btn-lg btn-success" href="#instructor" role="button">Submitted to:</a></p> !-->
<!-- <p><a data-toggle="modal" class="btn btn-danger" href="#instructor" role="button">Submitted to: </a></p> !-->
</div>
<!-- Site footer -->
<footer class="footer">
<!-- <p align="center">© All Rights Reserved 2022</p> !-->
<p align="center"><a target="_blank" href="http://www.dsatm.edu.in" data-show-count="true">Dayananda Sagar Academy of Technology and Management </a></p>
<p align="center">Contact <a href="mailto:[email protected],[email protected], [email protected], [email protected]?subject=Feedback"> Us 👻 </a></p>
</footer>
<!-- this modal is for my INSTRUCTOR -->
<div class="modal fade" id="instructor" 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"><b>Our Instructor</b></h3>
</div>
<div class="modal-body" style="padding:40px 50px;">
<div align="center">
<a href="https://scholar.google.co.in/citations?user=lly4WrwAAAAJ&hl=en" target="_blank" title="My Instructor in DBMS"><big><b>Dr. V. Sivakumar, Assistant Professor Dept. of CSE</b></big></a>
</div>
</div>
</div>
</div>
</div>
<!-- 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>