forked from hkpanchani/gitdemo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpack.php
More file actions
29 lines (28 loc) · 664 Bytes
/
pack.php
File metadata and controls
29 lines (28 loc) · 664 Bytes
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
<?php
include_once 'include/admin_header.php';
?>
<center> <table class="u_table">
<th class="th bk_th" colspan="2">
Costomize Packages
</th>
<tr>
<td class="hi_wi">
<a href="a_packages.php"><button class="ad_btn_user2"> Add Packages </button></a>
</td>
</tr>
<tr>
<td class="hi_wi">
<a href="d_packages.php"><button class="ad_btn_user2"> Delete_Packages </button></a>
</td>
</tr>
<tr>
<td class="hi_wi">
<a href="edit_s.php"><button class="ad_btn_user3"> Edit_Packages </button></a>
</td>
</tr>
</table>
<a href="index.php"><button class="book_btn">Home</button></a>
</center>
<?php
include_once 'include/a_footer.php';
?>