-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathviewsalaryreport2.php
More file actions
143 lines (127 loc) · 4.66 KB
/
Copy pathviewsalaryreport2.php
File metadata and controls
143 lines (127 loc) · 4.66 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
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Online Payroll & Task Management</title>
<meta name="description" content="Online Payroll and Task Management System" />
<link href="templatemo_style.css" rel="stylesheet" type="text/css"<a href="#"><img src="images/salaryrpt.jpg" alt="salaryrpt" /> />
<style type="text/css">
body,td,th {
font-size: 14px;
font-weight: bold;
color: #F00;
}
body {
background-color: #FFF;
background-image: salaryrpt.jpg;
}
</style>
</head>
<body>
<div id="templatemo_wrapper">
<div id="salaryrpt">
<div id="templatemo_header_panel">
<div id="salaryrpt"></div>
</div>
</body>
</html>
<?php
include("header.php");
include("dbconnection.php");
$qresult=mysql_query("select * from salary where empid='$_SESSION[emid]'");
?>
<div id="templatemo_content">
<div id="templatemo_content_left">
<div>
<p><img src="images/burning108.gif" width="515" height="149" /><br />
</p>
</div>
<form id="form1" name="form1" method="post" action="">
<table width="606" border="1">
<tr>
<th width="345" scope="row"><label for="slno">SL NO </label> <input type="text" name="slno" id="slno" /></th>
<td width="245"><label for="Salaryyear">Salary Year</label>
<input type="text" name="Salaryyear" id="Salaryyear" /></td>
</tr>
<tr>
<th scope="row"><label for="EmployeeID">Employee ID</label>
<input type="text" name="EmployeeID" id="EmployeeID" /></th>
<td><label for="SalaryMonth">Salary Month</label>
<input type="text" name="SalaryMonth" id="SalaryMonth" /></td>
</tr>
<tr>
<th scope="row"><label for="EmployeeName">Employee Name</label>
<input type="text" name="EmployeeName" id="EmployeeName" /></th>
<td><label for="Date">Date</label>
<input type="text" name="Date" id="Date" /></td>
</tr>
<tr>
<th scope="row"><label for="BranchName">Branch Name</label>
<input type="text" name="BranchName" id="BranchName" /></th>
<td> </td>
</tr>
</table>
</form>
<table width="600" border="1">
<tr>
<th width="590" scope="row"><label for="Basicsalary">Basic Salary</label>
<input type="text" name="Basicsalary" id="Basicsalary" /></th>
</tr>
<tr>
<th scope="row"><label for="EmployeeID">Provident Fund</label>
<input type="text" name="pf" id="EmployeeID" /></th>
</tr>
<tr>
<th scope="row"><label for="EmployeeName"> HRA</label>
<input type="text" name="hra" id="EmployeeName" /></th>
</tr>
<tr>
<th scope="row"><p>
<label for="BranchName"> LIC</label>
<input type="text" name="lic" id="BranchName" />
</p></th>
</tr> <tr>
<th scope="row"><p>
<label for="BranchName"> Total Salary Paid</label>
<input type="text" name="totalsalarypaid" id="BranchName" />
</p></th>
</tr>
<tr>
<th scope="row"><p align="center">
<input type="submit" name="print" id="print" value="PRINT" />
</p></th>
</tr><strong></strong>
</table>
<p> </p>
<div class="rc_btn_02"></div>
<div class="margin_bottom_40"></div>
<div class="cleaner"></div>
</div> <!-- end of content left -->
<div id="templatemo_content_right">
<div class="content_right_section">
<?php
if($_SESSION["login"] == "admin")
{
include("adminsidebar.php");
}
else
{
include("empsidebar.php");
}
?>
<div class="news_section">
<div class="news_image"></div>
<div class="news_content">
<div class="news_title"></div>
</div>
</div>
<div class="news_section">
<div class="news_content"> </div>
</div>
<div class="margin_bottom_20"></div>
</div>
</div> <!-- end of content right -->
<div class="cleaner"></div>
</div>
<?php
include("footer.php");
?>