-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdatecat.php
41 lines (34 loc) · 965 Bytes
/
updatecat.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
<?php
session_start();
if (!isset($_SESSION['SESS_MEMBER'])) {
# code...
header('Location:login.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Update Category</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/adminstyle.css">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<?php include('include/nav2.php'); ?>
</nav>
<form class="all add-pan">
<fieldset>
<legend>Admin Panel</legend>
<div>
<ul>
<li class="edit-cat"><a href="addnew.php"> Add New Category</a> </li>
<li class="edit-cat"><a href="rename-cat.php"> Rename Category</a> </li>
<li class="edit-cat"><a href="editcat.php">Edit Or Update Category </a></li>
</ul>
</div>
</fieldset>
</form>
</body>
<script src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
</html>