-
Notifications
You must be signed in to change notification settings - Fork 131
/
newad.php
249 lines (212 loc) · 6.84 KB
/
newad.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
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
<?php
ob_start();
session_start();
$pageTitle = 'Create New Item';
include 'init.php';
if (isset($_SESSION['user'])) {
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$formErrors = array();
$name = filter_var($_POST['name'], FILTER_SANITIZE_STRING);
$desc = filter_var($_POST['description'], FILTER_SANITIZE_STRING);
$price = filter_var($_POST['price'], FILTER_SANITIZE_NUMBER_INT);
$country = filter_var($_POST['country'], FILTER_SANITIZE_STRING);
$status = filter_var($_POST['status'], FILTER_SANITIZE_NUMBER_INT);
$category = filter_var($_POST['category'], FILTER_SANITIZE_NUMBER_INT);
$tags = filter_var($_POST['tags'], FILTER_SANITIZE_STRING);
if (strlen($name) < 4) {
$formErrors[] = 'Item Title Must Be At Least 4 Characters';
}
if (strlen($desc) < 10) {
$formErrors[] = 'Item Description Must Be At Least 10 Characters';
}
if (strlen($country) < 2) {
$formErrors[] = 'Item Title Must Be At Least 2 Characters';
}
if (empty($price)) {
$formErrors[] = 'Item Price Cant Be Empty';
}
if (empty($status)) {
$formErrors[] = 'Item Status Cant Be Empty';
}
if (empty($category)) {
$formErrors[] = 'Item Category Cant Be Empty';
}
// Check If There's No Error Proceed The Update Operation
if (empty($formErrors)) {
// Insert Userinfo In Database
$stmt = $con->prepare("INSERT INTO
items(Name, Description, Price, Country_Made, Status, Add_Date, Cat_ID, Member_ID, tags)
VALUES(:zname, :zdesc, :zprice, :zcountry, :zstatus, now(), :zcat, :zmember, :ztags)");
$stmt->execute(array(
'zname' => $name,
'zdesc' => $desc,
'zprice' => $price,
'zcountry' => $country,
'zstatus' => $status,
'zcat' => $category,
'zmember' => $_SESSION['uid'],
'ztags' => $tags
));
// Echo Success Message
if ($stmt) {
$succesMsg = 'Item Has Been Added';
}
}
}
?>
<h1 class="text-center"><?php echo $pageTitle ?></h1>
<div class="create-ad block">
<div class="container">
<div class="panel panel-primary">
<div class="panel-heading"><?php echo $pageTitle ?></div>
<div class="panel-body">
<div class="row">
<div class="col-md-8">
<form class="form-horizontal main-form" action="<?php echo $_SERVER['PHP_SELF'] ?>" method="POST">
<!-- Start Name Field -->
<div class="form-group form-group-lg">
<label class="col-sm-3 control-label">Name</label>
<div class="col-sm-10 col-md-9">
<input
pattern=".{4,}"
title="This Field Require At Least 4 Characters"
type="text"
name="name"
class="form-control live"
placeholder="Name of The Item"
data-class=".live-title"
required />
</div>
</div>
<!-- End Name Field -->
<!-- Start Description Field -->
<div class="form-group form-group-lg">
<label class="col-sm-3 control-label">Description</label>
<div class="col-sm-10 col-md-9">
<input
pattern=".{10,}"
title="This Field Require At Least 10 Characters"
type="text"
name="description"
class="form-control live"
placeholder="Description of The Item"
data-class=".live-desc"
required />
</div>
</div>
<!-- End Description Field -->
<!-- Start Price Field -->
<div class="form-group form-group-lg">
<label class="col-sm-3 control-label">Price</label>
<div class="col-sm-10 col-md-9">
<input
type="text"
name="price"
class="form-control live"
placeholder="Price of The Item"
data-class=".live-price"
required />
</div>
</div>
<!-- End Price Field -->
<!-- Start Country Field -->
<div class="form-group form-group-lg">
<label class="col-sm-3 control-label">Country</label>
<div class="col-sm-10 col-md-9">
<input
type="text"
name="country"
class="form-control"
placeholder="Country of Made"
required />
</div>
</div>
<!-- End Country Field -->
<!-- Start Status Field -->
<div class="form-group form-group-lg">
<label class="col-sm-3 control-label">Status</label>
<div class="col-sm-10 col-md-9">
<select name="status" required>
<option value="">...</option>
<option value="1">New</option>
<option value="2">Like New</option>
<option value="3">Used</option>
<option value="4">Very Old</option>
</select>
</div>
</div>
<!-- End Status Field -->
<!-- Start Categories Field -->
<div class="form-group form-group-lg">
<label class="col-sm-3 control-label">Category</label>
<div class="col-sm-10 col-md-9">
<select name="category" required>
<option value="">...</option>
<?php
$cats = getAllFrom('*' ,'categories', '', '', 'ID');
foreach ($cats as $cat) {
echo "<option value='" . $cat['ID'] . "'>" . $cat['Name'] . "</option>";
}
?>
</select>
</div>
</div>
<!-- End Categories Field -->
<!-- Start Tags Field -->
<div class="form-group form-group-lg">
<label class="col-sm-3 control-label">Tags</label>
<div class="col-sm-10 col-md-9">
<input
type="text"
name="tags"
class="form-control"
placeholder="Separate Tags With Comma (,)" />
</div>
</div>
<!-- End Tags Field -->
<!-- Start Submit Field -->
<div class="form-group form-group-lg">
<div class="col-sm-offset-3 col-sm-9">
<input type="submit" value="Add Item" class="btn btn-primary btn-sm" />
</div>
</div>
<!-- End Submit Field -->
</form>
</div>
<div class="col-md-4">
<div class="thumbnail item-box live-preview">
<span class="price-tag">
$<span class="live-price">0</span>
</span>
<img class="img-responsive" src="img.png" alt="" />
<div class="caption">
<h3 class="live-title">Title</h3>
<p class="live-desc">Description</p>
</div>
</div>
</div>
</div>
<!-- Start Loopiong Through Errors -->
<?php
if (! empty($formErrors)) {
foreach ($formErrors as $error) {
echo '<div class="alert alert-danger">' . $error . '</div>';
}
}
if (isset($succesMsg)) {
echo '<div class="alert alert-success">' . $succesMsg . '</div>';
}
?>
<!-- End Loopiong Through Errors -->
</div>
</div>
</div>
</div>
<?php
} else {
header('Location: login.php');
exit();
}
include $tpl . 'footer.php';
ob_end_flush();
?>