-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpages_staff_add_book_record.php
175 lines (162 loc) · 8.53 KB
/
pages_staff_add_book_record.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
<?php
/*
* Created on Wed Jul 07 2021
*
* The MIT License (MIT)
* Copyright (c) 2021 MartDevelopers Inc
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software
* and associated documentation files (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
* TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
session_start();
include('config/config.php');
include('config/checklogin.php');
check_login();
if (isset($_POST['add_book'])) {
if (empty($_POST["b_title"]) || empty($_POST["b_isbn"]) || empty($_POST['b_author']) || empty($_POST['b_publisher']) || empty($_POST['b_count'])) {
$err = "Blank Values Not Accepted😬!";
} else {
$b_title = $_POST['b_title'];
$b_isbn = $_POST['b_isbn'];
$b_author = $_POST['b_author'];
$b_publisher = $_POST['b_publisher'];
$b_summary = $_POST['b_summary'];
$cat_id = $_GET['cat_id'];
$cat_name = $_GET['cat_name'];
$b_count = $_POST['b_count'];
$b_price = $_POST['b_price'];
//Insert Captured information to a database table
$postQuery = "INSERT INTO iBookStore_books (b_price, b_title, b_isbn, b_author, b_publisher, b_summary, cat_id, cat_name, b_count) VALUES (?,?,?,?,?,?,?,?,?)";
$postStmt = $mysqli->prepare($postQuery);
//bind paramaters
$rc = $postStmt->bind_param('sssssssss', $b_price, $b_title, $b_isbn, $b_author, $b_publisher, $b_summary, $cat_id, $cat_name, $b_count);
$postStmt->execute();
//declare a varible which will be passed to alert function
if ($postStmt) {
$success = "Book Added" && header("refresh:1; url=pages_staff_add_book.php");
} else {
$err = "Please Try Again Or Try Later";
}
}
}
require_once('partials/_head.php');
require_once('partials/_codeGen.php');
?>
<body>
<!-- BEGIN LOADER -->
<div id="load_screen">
<div class="loader">
<div class="loader-content">
<div class="spinner-grow align-self-center"></div>
</div>
</div>
</div>
<!-- END LOADER -->
<!-- BEGIN NAVBAR -->
<?php require_once('partials/_staffNav.php'); ?>
<!-- END NAVBAR -->
<!-- BEGIN NAVBAR -->
<div class="sub-header-container">
<header class="header navbar navbar-expand-sm">
<a href="javascript:void(0);" class="sidebarCollapse" data-placement="bottom"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu">
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg></a>
<ul class="navbar-nav flex-row">
<li>
<div class="page-header">
<nav class="breadcrumb-one" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="pages_staff_dashboard.php">Dashboard</a></li>
<li class="breadcrumb-item"><a href="pages_staff_add_book.php">Books Categories</a></li>
<li class="breadcrumb-item active" aria-current="page"><span>Add Books</span></li>
</ol>
</nav>
</div>
</li>
</ul>
</header>
</div>
<!-- END NAVBAR -->
<!-- BEGIN MAIN CONTAINER -->
<div class="main-container" id="container">
<div class="overlay"></div>
<div class="search-overlay"></div>
<!-- BEGIN SIDEBAR -->
<?php require_once('partials/_staffSideNav.php'); ?>
<!-- END SIDEBAR -->
<!-- BEGIN CONTENT PART -->
<div id="content" class="main-content">
<div class="layout-px-spacing">
<div class="row layout-top-spacing">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class=" widget box box-shadow">
<div class="widget-header">
<div class="row">
<div class="col-xl-12 col-md-12 col-sm-12 col-12">
<h4>Fill All Required Fields</h4>
</div>
</div>
</div>
<div class="">
<form method="post" enctype="multipart/form-data">
<div class="form-row mb-4">
<div class="form-group col-md-4">
<label for="inputEmail4">Book Title</label>
<input type="name" name="b_title" class="form-control">
</div>
<div class="form-group col-md-4">
<label for="inputEmail4">Book Price(Ksh)</label>
<input type="name" name="b_price" class="form-control">
</div>
<div class="form-group col-md-4">
<label for="inputPassword4">Book ISBN Number</label>
<input type="text" name="b_isbn" value="<?php echo $alpha; ?>-<?php echo $beta; ?>" class="form-control">
</div>
</div>
<div class="form-row mb-4">
<div class="form-group col-md-4">
<label for="inputEmail4">Book Author</label>
<input type="name" name="b_author" class="form-control">
</div>
<div class="form-group col-md-4">
<label for="inputPassword4">Book Publisher</label>
<input type="text" name="b_publisher" class="form-control">
</div>
<div class="form-group col-md-4">
<label for="inputPassword4">Book Copies Available</label>
<input type="text" name="b_count" class="form-control">
</div>
</div>
<div class="form-row mb-4">
<div class="form-group col-md-12">
<label for="inputCity">Book Summary | Description </label>
<textarea type="text" rows="15" name="b_summary" class="form-control"></textarea>
</div>
</div>
<button type="submit" name="add_book" class="btn btn-primary mt-3">Add Book</button>
</form>
</div>
</div>
</div>
</div>
</div>
<?php require_once('partials/_footer.php'); ?>
</div>
<!-- END CONTENT PART -->
</div>
<?php require_once('partials/_scripts.php'); ?>
</body>
</html>