-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuy.php
More file actions
458 lines (229 loc) · 10.2 KB
/
Copy pathbuy.php
File metadata and controls
458 lines (229 loc) · 10.2 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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<?php include("includes/session.php"); ?>
<?php include("includes/header.php"); ?>
<?php include("includes/connection.php"); ?>
<?php include("includes/new_functions.php"); ?>
<?php
//confirm_logged_in();
//$username = $_SESSION['name'];
//$user_id = $_SESSION['user_id'];
if(isset($_GET['cat'])){
$category = trim(mysql_prep($_GET['cat']));
$price = 'no';
}
else{
$category = 'all';
$price='no';
}
?>
<?php
confirm_logged_in();
$username = $_SESSION['name'];
$user_id = $_SESSION['user_id'];
$email = $_SESSION['email'];
if(isset($_GET['id'])){
$id = trim(mysql_prep($_GET['id']));
$products = get_product_by_id($id);
while($product = mysql_fetch_array($products))
{
$pro = $product['product_name'];
}
}
elseif(isset($_GET['book_id']))
{
$id = trim(mysql_prep($_GET['book_id']));
$products = get_book_by_id($id);
while($product = mysql_fetch_array($products))
{
$pro = $product['book_name'];
}
}
else
{
redirect_to("bazzar.php");
}
?>
<?php
if(isset($_POST['post']))
{
if(isset($_POST['name'])){
$name = trim(mysql_prep($_POST['name']));}
if(isset($_POST['mobile'])){
$mobile = mysql_prep($_POST['mobile']);}
if(isset($_POST['room'])){
$room = mysql_prep($_POST['room']);}
if(isset($_POST['hostel'])){
$hostel = mysql_prep($_POST['hostel']);}
date_default_timezone_set('Asia/Kolkata');
$time = date("Y-m-d h:i a");
//$visible = mysql_prep($_POST['visible']);
if(isset($_POST['name']) && isset($_POST['mobile']) && isset($_POST['room']) && !empty($_POST['hostel']) && !empty($_POST['name']) && !empty($_POST['mobile']))
{
// strinngs need quotes ' ' around them
$query = "INSERT INTO buyers (id, buyer, mobile, room, hostel, time, product, email)
VALUES ('', '{$name}', '{$mobile}', '{$room}', '{$hostel}', '{$time}', '{$pro}', '{$email}')";
$result = mysql_query($query, $connection);
confirm_query($result);
//move_uploaded_file($_FILES['photo']['tmp_name'], $target);
redirect_to("bazzar.php?buy=1");
//echo "<p>Subject creation failed</p><br />";
}
else
{
$error = "We couldn't process your request. You might Have missed few entries.";
}
}
?>
<?php
?>
<header>
<div class="container"><a href="#" data-activates="nav-mobile" class="button-collapse top-nav waves-effect waves-light circle"><i class="mdi-navigation-menu"></i></a></div>
<ul id="nav-mobile" class="side-nav fixed text-white" style="background-color:">
<li class="logo" style="background-color:;"><a id="logo-container" href="http://allinism.in/" class="brand-logo" >
<img id="front-page-logo" style="width:100px;height:100px;" class="responsive-img" src="img/allin.png"></a></li>
<li class="no-padding">
<ul class="collapsible collapsible-accordion">
<li class="bold green-text text-lighten-2"><a class="collapsible-header waves-effect waves-teal green-text text-lighten-2">Other Stuff</a>
<div class="collapsible-body" >
<ul>
<li><a href="bazzar.php?cat=Electronics" class="<?php if($category == 'Electronics'){ echo active; } ?>">Electronics</a></li>
<li><a href="bazzar.php?cat=Sports" class="<?php if($category == 'Sports'){ echo active; } ?>">Sports</a></li>
<li><a href="bazzar.php?cat=Stationary" class="<?php if($category == 'Stationary'){ echo active; } ?>">Stationary</a></li>
<li><a href="bazzar.php?cat=Cycles" class="<?php if($category == 'Cycles'){ echo active; } ?>">Cycles</a></li>
<li><a href="bazzar.php?cat=General" class="<?php if($category == 'General'){ echo active; } ?>">General</a></li>
<li><a href="bazzar.php?cat=Other" class="<?php if($category == 'Other'){ echo active; } ?>">Other</a></li>
</ul>
</div>
</li>
<li class="bold"><a class="collapsible-header waves-effect waves-teal">Books</a>
<div class="collapsible-body">
<ul>
<li><a href="book_bazzar.php?cat=Electronics">Electronics</a></li>
<li><a href="book_bazzar.php?cat=Books">Programming</a></li>
<li><a href="book_bazzar.php?cat=Sports">Mining</a></li>
<li><a href="book_bazzar.php?cat=Stationary">CAT/GRE/GATE</a></li>
<li><a href="book_bazzar.php?cat=Cycles">Novels</a></li>
<li><a href="book_bazzar.php?cat=Other">Other</a></li>
</ul>
</div>
</li>
<br />
<li class="bold"><a class="collapsible-header waves-effect waves-teal">Sell Anonymously</a>
<div class="collapsible-body">
<ul>
<li><a href="sell_book.php?cat=anony">Books</a></li>
<li><a href="sell_other.php?cat=anony">Other Stuff</a></li>
</ul>
</div>
</li>
<li class="bold"><a class="collapsible-header waves-effect waves-teal">Sell Directly</a>
<div class="collapsible-body">
<ul>
<li><a href="sell_book.php?cat=direct">Books</a></li>
<li><a href="sell_other.php?cat=direct">Other Stuff</a></li>
</ul>
</div>
</li>
</ul>
</header>
<main><div class="section" id="index-banner">
<div class="container">
<div class="row">
<div class="col s12 m9">
<h6 class="header center-on-small-only right-align"><a style="text-decoration:none;color:white" href="http://allinism.in/">Home</a></h6>
<h1 class="header center-on-small-only">ISM BUZZar</h1>
<?php
if(!isset($_GET['cat'])){
echo '<h4 class ="light red-text text-lighten-4 center-on-small-only">The Market place of ISM .<br />
Anything and everything has a value here .<br />
BUY SELL SHARE .</h4>';}
?>
<br />
</div>
</div>
</div>
</div>
<br /><br /><br />
<div class="container">
<!-- Outer row -->
<div class="row">
<div class="section col s12 m9 l10">
<h4 class="red-text text-lighten-2">Buy <?php echo $pro; ?></h4><hr /><br />
<?php
echo $error;
?>
<div class="row">
<form class="col s12" method="post" action="buy.php?id=<?php echo $id; ?>">
<div class="modal-body">
<div class="form-group"><!-- One form grpup for one block or query-->
<label for="Article-Name" class="col-lg-2 control-label" >Name</label>
<div class="col-lg-10">
<input type="text" name="name" class="form-control" placeholder="Your real name." required>
</div>
</div>
<div class="modal-body">
<div class="form-group"><!-- One form grpup for one block or query-->
<label for="Article-Name" class="col-lg-2 control-label" >Mobile No.</label>
<div class="col-lg-10">
<input type="text" name="mobile" maxlength="10" minlength="10" class="form-control" placeholder="Our team will contact you on this number." required>
</div>
</div>
<div class="form-group"><!-- One form grpup for one block or query-->
<label for="genre" class="col-lg-2 control-label" >Hostel</label>
<div class="col-lg-10">
<select name="hostel" class="form-control" required>
<option value="Jasper">Jasper</option>
<option value="Amber">Amber</option>
<option value="Emerald">Emerald</option>
<option value="Topaz">Topaz</option>
<option value="Sapphire">Sapphire</option>
<option value="Diamond">Diamond</option>
<option value="Ruby">Ruby</option>
</select>
</div>
</div>
<div class="form-group"><!-- One form grpup for one block or query-->
<label for="Article-Name" class="col-lg-2 control-label" >Room No.</label>
<div class="col-lg-10">
<input type="text" name="room" class="form-control" placeholder="" required>
</div>
<button class="btn right" name="post">Submit</button>
</form>
</div>
<!-- Table of contents -->
</div>
</div>
<br /><br /><br />
<br /><br /><br />
<br /><br /><br />
</main> <footer class="page-footer">
<div class="container" style="opacity:0;background-color:white">
<div class="row" style="opacity:0;background-color:white">
<div class="col l4 s12" style="opacity:0;background-color:#000000">
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
</div>
<div class="col l4 s12">
</div>
<div class="col l4 s12" style="overflow: hidden;">
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2014-2015 ALLinISM, All rights reserved.
<a class="grey-text text-lighten-4 right" href="http://allinism.in/">Go Home</a>
</div>
</div>
</footer>
<div id="buy" class="modal ">
<div class="modal-content">
</div>
</div><hr>
<div class="modal-footer">
<a href="#" class="modal-action modal-close btn waves-effect waves-light btn-small ">Close</a>
</div>
</div>
<?php include("includes/footer.php"); ?>