-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
271 lines (238 loc) · 9.66 KB
/
Copy pathindex.php
File metadata and controls
271 lines (238 loc) · 9.66 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<?php session_start();
if ((time() - $_SESSION['last_activity']) > 1800) // 30* 60 = 1800
{
//current time - jokhn session create korcilam mane jokhn
//login korcilam jodi > 30 min(1800 sec) hoy tahole
//session destroy kore logout kore dilam...
header("Location: logout.php");
}
require "connection/connection.php";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
include("includes/head.inc.php");
?>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="default.css">
<meta name="keywords" content="<?php
//meta keywords sorted by category name starts
$i = 1;
$sql1 = 'select * from category';
$query1 = $db->query($sql1) or die("can not execute query");
$numRows1 = $query1->num_rows;
while ($result1 = $query1->fetch_array(MYSQLI_ASSOC)) {
if ($i != $numRows1) {
echo $result1['cat_nm'] . ',';
//last name er por ar comma hbena. setar condition dilam
} else {
echo $result1['cat_nm'];
}
$i++;
}
//meta keywords sorted by category name ends
//meta keywords sorted by category name starts
$i = 1;
$sql1 = 'select * from subcat';
$query1 = $db->query($sql1) or die("can not execute query");
$numRows1 = $query1->num_rows;
echo ',';
while ($result1 = $query1->fetch_array(MYSQLI_ASSOC)) {
if ($i != $numRows1) {
echo $result1['subcat_nm'] . ',';
//last name er por ar comma hbena. setar condition dilam
} else {
echo $result1['subcat_nm'];
}
$i++;
}
//meta keywords sorted by category name ends
//meta keywords sorted by book name starts
$i = 1;
$sql1 = 'select * from book';
$query1 = $db->query($sql1) or die("can not execute query");
$numRows1 = $query1->num_rows;
echo ',';
while ($result1 = $query1->fetch_array(MYSQLI_ASSOC)) {
if ($i != $numRows1) {
echo $result1['b_nm'] . ',';
//last name er por ar comma hbena. setar condition dilam
} else {
echo $result1['b_nm'];
}
$i++;
}
//meta keywords sorted by book name ends
?>">
<meta name="description" content="book store">
<link rel="stylesheet" href="lightbox/dist/css/lightbox.css">
<script src="sharer.js-master/sharer.min.js"></script>
</head>
<body>
<div id="wholeContainer">
<!-- start header -->
<div id="header">
<div id="menu">
<?php
include("includes/menu.inc.php");
?>
</div>
</div>
<div id="logo-wrap">
<div id="logo">
<?php
include("includes/logo.inc.php");
?>
</div>
</div>
<!--<div id="categoryInlineSection">
<div id="categoryInline">
<?php
/* include("includes/inlineSearch.inc.php");
*/ ?>
</div>
</div>-->
<!-- end header -->
<?php
//include 'includes/inlineSearch.inc.php';
?>
<!-- start page -->
<div id="page">
<!-- start content -->
<div id="content">
<div class="post">
<h1 class="title">Welcome,
<?php
if (isset($_SESSION['status'])) {
echo '<span style="font-style: italic; color: #F27935;">' . $_SESSION["unm"] . '</span>' ;
} else {
echo 'to MATRIX and MP3';
}
?>
</h1>
<div class="entry">
<br>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam
dolores doloribus error, esse est
eum fuga in itaque nesciunt numquam perspiciatis provident qui
quod, sunt velit vero voluptatem!
Provident, velit?
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam
dolores doloribus error, esse est
eum fuga in itaque nesciunt numquam perspiciatis provident qui
quod, sunt velit vero voluptatem!
Provident, velit?
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam
dolores doloribus error, esse est
eum fuga in itaque nesciunt numquam perspiciatis provident qui
quod, sunt velit vero voluptatem!
Provident, velit?
</p>
<br>
<div class="bookShowWrapper">
<!--<div class="bookShowerArea">-->
<?php
$id = 1;
$query = 'select * from book';
$res = $db->query($query) or die("cannot execute the query!!");
$num = $res->num_rows;
while ($id <= $num) {
$query = "select * from book where b_id='$id'";
$res1 = $db->query($query);
while ($row = $res1->fetch_array(MYSQLI_ASSOC)) {
echo '<div style="overflow:scroll;
height: 300px;" class="bookShowerArea">';
echo '<h3 style="text-align: center;">' . $row['b_nm'] . '</h3>';
echo "<img style='margin-top: 10px;
margin-left: 55px;
margin-bottom: 5px;' src='$row[b_img]' width='100'/>";
echo '</br/>';
echo '<a style=" margin-left: 75px;"
href="' . $row['b_img'] . '" rel="lightbox">
<img src="images/zoom.gif" ></a>';
/*echo '<h3 style="text-align: center;
margin-top: 10px;">Book Description</h3><hr>';
echo '<p>' . $row['b_desc'] . '</p>';*/
//checking whether the user is logged in or not
if (isset($_SESSION['status'])) {
echo '<a style="text-align: center;
text-decoration: none;
border:3px solid #d96417;
padding:8px;
color:white;
font-size: 15px;
border-radius:5px 5px;
margin-top: 5px;
"
class="btn btn-warning"
href="#">Click here to get the book</a>';
} else {
echo '<p
style="
padding:3px;
color:white;
font-size: 15px;
border:3px solid #F54B43;
border-radius:5px 5px;
background: lightcoral;
margin-top: 5px;
"
class="glyphicon glyphicon-alert"> Please login to get the book</p>';
}
echo '</div>';
}
$id++;
}
?>
</div>
</div>
<br><br>
<p style="font-size: 16px; clear: both">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam
dolores doloribus error, esse est
eum fuga in itaque nesciunt numquam perspiciatis provident qui
quod, sunt velit vero voluptatem!
Provident, velit?
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam
dolores doloribus error, esse est
eum fuga in itaque nesciunt numquam perspiciatis provident qui
quod, sunt velit vero voluptatem!
Provident, velit?
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam
dolores doloribus error, esse est
eum fuga in itaque nesciunt numquam perspiciatis provident qui
quod, sunt velit vero voluptatem!
Provident, velit?
</p>
</div>
</div>
</div>
<!-- end content -->
<!-- start sidebar -->
<div id="sidebar">
<?php
include("includes/search.inc.php");
?>
</div>
<!-- end sidebar -->
<div style="clear: both;"> </div>
<!-- end page -->
<!-- start footer -->
<div id="footer" style="clear: both">
<?php
include("includes/footer.inc.php");
?>
</div>
<!-- end footer -->
<!--Move to top code starts-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="http://arrow.scrolltotop.com/arrow18.js"></script>
<!--Move to top code ends-->
<!--Lightbox js code starts here-->
<script src="lightbox/dist/js/lightbox.js"></script>
<!--Lightbox js code ends here-->
</div>
</body>
</html>