-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexpense_khata.php
206 lines (182 loc) · 5.97 KB
/
expense_khata.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
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="lt-ie9 lt-ie8 lt-ie7" lang="en">
<![endif]-->
<!--[if IE 7]>
<html class="lt-ie9 lt-ie8" lang="en">
<![endif]-->
<!--[if IE 8]>
<html class="lt-ie9" lang="en">
<![endif]-->
<!--[if gt IE 8]>
<!-->
<html lang="en">
<!--
<![endif]-->
<head>
<meta charset="utf-8">
<title>খাতার তালিকা | অভিযাত্রী সুজ</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="icomoon/style.css" rel="stylesheet">
<link rel="icon" type="image/ico" href="img/ico/favicon.ico"></link>
<!--[if lte IE 7]>
<script src="css/icomoon-font/lte-ie7.js"></script>
<![endif]-->
<link href="css/main.css" rel="stylesheet">
<!-- Important. For Theming change primary-color variable in main.css -->
</head>
<body>
<header>
<a href="#" class="logo">
<img src="img/Regainers_final.jpg" alt="Logo" />
</a>
<div class="btn-group">
<button class="btn btn-primary">ইউজার</button>
<button data-toggle="dropdown" class="btn btn-primary dropdown-toggle">
<span class="caret"></span>
</button>
<ul class="dropdown-menu pull-right">
<li>
<a href="#">Edit Profile</a>
</li>
<li>
<a href="#">Account Settings</a>
</li>
<li>
<a href="#">Logout</a>
</li>
</ul>
</div>
</header>
<div class="container-fluid">
<div class="dashboard-container">
<?php
include 'top_nav.php';
selected('baki_khata');
?></div>
<div class="sub-nav">
<ul>
<li>
<a href="#" class="heading">খাতার তালিকা</a>
</li>
<li>
<a href="baki_khata.php">
বাকি খাতা
</a>
</li>
<li>
<a href="mohajon_khata.php">
মহাজন খাতা
</a>
</li>
<li>
<a href="bikri_khata.php">
বিক্রি খাতা
</a>
</li>
<li>
<a href="staff_khata.php">
স্টাফ খাতা
</a>
</li>
<li>
<a href="bank_khata.php">
ব্যাংক খাতা
</a>
</li>
<li>
<a href="expense_khata.php">
খরচ খাতা
</a>
</li>
<li>
<a href="company_check.php">
চেক খাতা
</a>
</li>
</ul>
</div>
<div class="dashboard-wrapper">
<div class="left-sidebar">
<div class="row-fluid">
<div class="span6">
<div class="widget">
<div class="widget-header">
<div class="title">
খরচ খাত
<span class="mini-title">খরচ প্রোফাইলসমূহ</span>
</div>
</div>
<div class="widget-body">
<table class="table table-condensed table-striped table-bordered table-hover no-margin">
<tr>
<th>ক্রমিক#</th>
<th>নাম</th>
</tr>
<?php
require_once "conn.php";
$result = mysqli_query($con,"SELECT * FROM other_expenses");
$serial = 1;
while($row = mysqli_fetch_array($result)){
echo "<tr>
<td>$serial</td>
<td>
<a href=\"expense_profile.php?expense=$row[expense_name]\">$row[expense_name]</a>
</td>
</tr>
";
$serial++;
}
?>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/.fluid-container-->
</div>
<footer>
<p>© CodeCharley</p>
</footer>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/jquery.scrollUp.js"></script>
<script src="js/jquery.datanew_staff.js"></script>
<script type="text/javascript">
//ScrollUp
$(function () {
$.scrollUp({
scrollName: 'scrollUp', // Element ID
topDistance: '300', // Distance from top before showing element (px)
topSpeed: 300, // Speed back to top (ms)
animation: 'fade', // Fade, slide, none
animationInSpeed: 400, // Animation in speed (ms)
animationOutSpeed: 400, // Animation out speed (ms)
scrollText: 'Scroll to top', // Text for element
activeOverlay: false, // Set CSS color to display scrollUp active point, e.g '#00FFFF'
});
});
//Tooltip
$('a').tooltip('hide');
//Data new_staff
$(document).ready(function () {
$('#data-table').dataTable({
"sPaginationType": "full_numbers"
});
});
jQuery('.delete-row').click(function () {
var conf = confirm('Continue delete?');
if (conf) jQuery(this).parents('tr').fadeOut(function () {
jQuery(this).remove();
});
return false;
});
</script>
</body>
</html>