-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathexpenses-category.php
More file actions
179 lines (146 loc) · 5.55 KB
/
expenses-category.php
File metadata and controls
179 lines (146 loc) · 5.55 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
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
<?php
include("includes/header.php");
if(!isset($_SESSION['admin_username']))
{
echo "<script>document.location='login.php'</script>";
}
else
{
?>
<!-- Main Content-->
<div class="main-content pt-0">
<div class="container">
<div class="inner-body">
<!-- Page Header -->
<div class="page-header">
<div>
<h2 class="main-content-title tx-24 mg-b-5">Expenses Category</h2>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Expenses Category</li>
</ol>
</div>
</div>
<!-- End Page Header -->
<!-- Row -->
<div class="row sidemenu-height">
<div class="col-lg-12">
<div class="card custom-card">
<div class="card-body">
<div class="row">
<!-- Add Category Form -->
<div class="col-md-6" style="border: 1px solid #eee; padding: 10px;">
<div class="col">
<form method="post" action="add-expenses-cat.php" enctype="multipart/form-data">
<div class="row row-sm">
<div class="col-md-12 col-lg-12 col-xl-12">
<div class="">
<div class="form-group col-md-9">
<label class=""> Category Name </label>
<input class="form-control" required="" name="expense_cat_name" type="text">
</div>
<div class="form-group col-md-9">
<button type="submit" name="exp-btn" class="btn ripple btn-main-primary">
Add Category
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
<!-- -->
<div class="col-md-6">
<div class="table-responsive">
<table class="table" id="example2">
<thead>
<tr>
<th class="wd-20p">No</th>
<th class="wd-15p">Category Name</th>
<th class="wd-15p">Action</th>
</tr>
</thead>
<tbody>
<?php
$i = 0;
$get_cat = "SELECT * FROM tbl_expense_cat";
$run_cat = mysqli_query($db, $get_cat);
while($row_cat = mysqli_fetch_array($run_cat))
{
$cat_id = $row_cat['expense_cat_id'];
$cat_name = $row_cat['expense_cat_name'];
$i++;
?>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $cat_name; ?></td>
<td>
<a class="btn ripple btn-primary" data-target="#update<?php echo $cat_id; ?>" data-toggle="modal" href="#update<?php echo $cat_id; ?>"><i class="fa fa-eye"></i></a>
<a class="btn ripple btn-danger" data-target="#delete<?php echo $cat_id; ?>" data-toggle="modal" href="#delete<?php echo $cat_id; ?>">
<i class="fa fa-trash"></i>
</a>
</td>
</tr>
<!-- Large Modal -->
<div class="modal" id="update<?php echo $cat_id; ?>">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content modal-content-demo">
<div class="modal-header">
<h6 class="modal-title">Update Category</h6><button aria-label="Close" class="close" data-dismiss="modal" type="button"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<form method="post" action="update-expense-category.php">
<div class="form-group col-md-9">
<label>Category Name</label>
<input type="hidden" name="cat_id" class="form-control" value="<?php echo $cat_id; ?>">
<input type="text" name="expense_cat_name" class="form-control" value="<?php echo $cat_name; ?>">
</div>
</div>
<div class="modal-footer">
<button class="btn ripple btn-primary" type="submit">Update Category</button>
<button class="btn ripple btn-secondary" data-dismiss="modal" type="button">Close</button>
</div>
</form>
</div>
</div>
</div>
<!--End Large Modal -->
<!-- Delete Modal -->
<div class="modal" id="delete<?php echo $cat_id; ?>">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content modal-content-demo">
<div class="modal-header">
<h6 class="modal-title">Delete Category Details</h6><button aria-label="Close" class="close" data-dismiss="modal" type="button"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<form action="expense-category-del.php" method="post">
<input type="hidden" class="form-control" name="cat_id" value="<?php echo $cat_id; ?>" required>
<p>Are you sure you want to <b>Delete</b> this category?</p>
</div>
<div class="modal-footer">
<button class="btn ripple btn-primary" name="delete" type="submit">Yes</button>
<button class="btn ripple btn-danger" data-dismiss="modal" type="button">No</button>
</div>
</form>
</div>
</div>
</div>
<!--End Delete Modal -->
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Row -->
</div>
</div>
</div>
<!-- End Main Content-->
<?php include("includes/footer.php"); ?>
<?php } ?>