-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-category.php
121 lines (97 loc) · 4.83 KB
/
add-category.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
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
if (strlen($_SESSION['jpaid']==0)) {
header('location:logout.php');
} else{
if(isset($_POST['submit']))
{
$category=$_POST['category'];
$description=$_POST['description'];
$sql="insert into tblcategory(CategoryName,Description)values(:category,:description)";
$query=$dbh->prepare($sql);
$query->bindParam(':category',$category,PDO::PARAM_STR);
$query->bindParam(':description',$description,PDO::PARAM_STR);
$query->execute();
$LastInsertId=$dbh->lastInsertId();
if ($LastInsertId>0) {
echo '<script>alert("Category has been created.")</script>';
echo "<script>window.location.href ='manage-category.php'</script>";
}
else
{
echo '<script>alert("Something Went Wrong. Please try again")</script>';
}
}
?>
<!doctype html>
<html lang="en" class="no-focus"> <!--<![endif]-->
<head>
<title>Job Portal - Add Category</title>
<link rel="stylesheet" id="css-main" href="assets/css/codebase.min.css">
</head>
<body>
<div id="page-container" class="sidebar-o sidebar-inverse side-scroll page-header-fixed main-content-narrow">
<?php include_once('includes/sidebar.php');?>
<?php include_once('includes/header.php');?>
<!-- Main Container -->
<main id="main-container">
<!-- Page Content -->
<div class="content">
<!-- Register Forms -->
<h2 class="content-heading">Add Category</h2>
<div class="row">
<div class="col-md-12">
<!-- Bootstrap Register -->
<div class="block block-themed">
<div class="block-header bg-gd-emerald">
<h3 class="block-title">Add Category</h3>
</div>
<div class="block-content">
<form method="post">
<div class="form-group row">
<label class="col-12" for="register1-email">Category:</label>
<div class="col-12">
<input type="text" class="form-control" value="" name="category" required="true">
</div>
</div>
<div class="form-group row">
<label class="col-12" for="register1-email">Category Description:</label>
<div class="col-12">
<textarea class="form-control" rows="5" name="description" required="true"></textarea>
</div>
</div>
<div class="form-group row">
<div class="col-12">
<button type="submit" class="btn btn-alt-success" name="submit">
<i class="fa fa-plus mr-5"></i> Add
</button>
</div>
</div>
</form>
</div>
</div>
<!-- END Bootstrap Register -->
</div>
</div>
</div>
<!-- END Page Content -->
</main>
<!-- END Main Container -->
<?php include_once('includes/footer.php');?>
</div>
<!-- END Page Container -->
<!-- Codebase Core JS -->
<script src="assets/js/core/jquery.min.js"></script>
<script src="assets/js/core/popper.min.js"></script>
<script src="assets/js/core/bootstrap.min.js"></script>
<script src="assets/js/core/jquery.slimscroll.min.js"></script>
<script src="assets/js/core/jquery.scrollLock.min.js"></script>
<script src="assets/js/core/jquery.appear.min.js"></script>
<script src="assets/js/core/jquery.countTo.min.js"></script>
<script src="assets/js/core/js.cookie.min.js"></script>
<script src="assets/js/codebase.js"></script>
</body>
</html>
<?php } ?>