-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooddonor.php
255 lines (221 loc) · 6.18 KB
/
fooddonor.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
250
251
252
253
254
255
<?php
session_start();
include("header.php");
if(isset($_POST[submit]))
{
if(isset($_GET[editid]))
{
$sql ="UPDATE food_donor set donor_id=$_POST[donor_id],address=$_POST[address],city=$_POST[city],pin_code=$_POST[pin_code],food_item_detail=$_POST[food_item_detail],quantity=$_POST[quantity],status=$_POST[status],datetime=$_POST[datetime] WHERE food_donor_id=$_GET[editid]";
$qsql = mysqli_query($con,$sql);
if(mysqli_affected_rows($con) == 1)
{
echo "<script>alert(Food donor record updated successfully..);</script>";
}
else
{
echo mysqli_error($con);
}
}
else
{
$sql ="INSERT INTO food_donor(donor_id,address,city,pin_code,food_item_detail,quantity,status,datetime) VALUES($_SESSION[donor_id],$_POST[address],$_POST[city],$_POST[pin_code],$_POST[food_item_detail],$_POST[quantity],Pending,$_POST[datetime])";
$qsql = mysqli_query($con,$sql);
if(mysqli_affected_rows($con) == 1)
{
echo "<script>alert(Food donor Entry done successfully..);</script>";
echo "<script>window.location=viewfooddonor.php;</script>";
}
else
{
echo mysqli_error($con);
}
}
}
if(isset($_GET[editid]))
{
$sqledit = "SELECT * FROM food_donor WHERE food_donor_id=$_GET[editid]";
$qsqledit = mysqli_query($con,$sqledit);
$rsedit = mysqli_fetch_array($qsqledit);
}
?>
<div id="page-header">
<div class="section-bg" style="background-image: url(img/background-2.jpg);"></div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="header-content">
<h1>Food Donor</h1>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="section" style="padding-top: 1px;">
<div class="container">
<div class="row">
<main id="" class="col-md-12">
<div class="">
<div class="">
<div class="article-comments">
<div class="media">
<div class="media-left">
<img class="media-object" src="img/charity.jpg" style="width: 100px;height: 100px;">
</div>
<div class="media-body">
<div class="media-heading">
<h4>Food Donor</h4>
</div>
<p>
<form method="post" action="" onsubmit="return validateform()">
<input type="hidden" name="donor_id" id="donor_id" class="form-control" value="<?php echo $rsdonor[donor_id]; ?>">
<span id="errdonor_id" class="errorclass"></span>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;">Food Item Detail </div>
<div class="col-md-10">
<textarea name="food_item_detail" id="food_item_detail" class="form-control" rows="6" ><?php echo $rsedit[food_item_detail]; ?></textarea>
<span id="errfood_item_detail" class="errorclass"></span>
</div>
</div>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;"> Quantity </div>
<div class="col-md-10">
<input type="number" name="quantity" id="quantity" class="form-control" value="<?php echo $rsedit[quantity]; ?>">
<span id="errquantity" class="errorclass"></span>
</div>
</div>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;"> Pick Up Address </div>
<div class="col-md-10">
<textarea name="address" rows="4" id="address" class="form-control"><?php echo $rsedit[address]; ?></textarea>
<span id="erraddress" class="errorclass"></span>
</div>
</div>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;">City </div>
<div class="col-md-10">
<input type="text" name="city" id="city" class="form-control" value="<?php echo $rsedit[city]; ?>">
<span id="errcity" class="errorclass"></span>
</div>
</div>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;">PIN code </div>
<div class="col-md-10">
<input type="number" name="pin_code" id="pin_code" class="form-control" value="<?php echo $rsedit[pin_code]; ?>" min="100001" max="999999">
<span id="errpin_code" class="errorclass"></span>
</div>
</div>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;">Pick up Date Time </div>
<div class="col-md-10">
<input type="datetime-local" name="datetime" id="datetime" class="form-control" value="<?php echo $rsedit[datetime]; ?>">
<span id="errdatetime" class="errorclass"></span>
</div>
</div>
<br>
<?php
if(isset($_SESSION[staff_id]))
{
?>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;">Status</div>
<div class="col-md-10">
<select class="form-control" name="status" id="status">
<option value="">Select Status</option>
<?php
$arr = array("Active","Inactive");
foreach($arr as $val )
{
if($val == $rsedit[status]){echo "<option value=$val selected>$val</option>";} else {echo "<option value=$val>$val</option>";}
}
?>
</select>
<span id="errstatus" class="errorclass"></span>
</div>
</div>
<?php
}
else
{
?>
<input type=hidden name="status" id="status" value="Pending" >
<span id="errstatus" class="errorclass"></span>
<?php
}
?>
<br>
<div class="row">
<div class="col-md-2" style="padding-top: 5px;"></div>
<div class="col-md-10">
<input type="submit" name="submit" id="submit" class="form-control btn btn-success" style="width: 200px;">
</div>
</div>
</form>
</p>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
</div>
<?php
include("footer.php");
?>
<script>
function validateform()
{
var i = 0;
$(.errorclass).html();
if(document.getElementById("food_item_detail").value == "")
{
document.getElementById("errfood_item_detail").innerHTML = "Food item detail should not be empty..";
i=1;
}
if(document.getElementById("quantity").value == "")
{
document.getElementById("errquantity").innerHTML = "Quantity should not be empty..";
i=1;
}
if(document.getElementById("address").value == "")
{
document.getElementById("erraddress").innerHTML = "Address should not be empty..";
i=1;
}
if(document.getElementById("city").value == "")
{
document.getElementById("errcity").innerHTML = "City should not be empty..";
i=1;
}
if(document.getElementById("pin_code").value == "")
{
document.getElementById("errpin_code").innerHTML = "PIN Code should not be empty..";
i=1;
}
if(document.getElementById("datetime").value == "")
{
document.getElementById("errdatetime").innerHTML = "Date time should not be empty..";
i=1;
}
if(document.getElementById("status").value == "")
{
document.getElementById("errstatus").innerHTML = "Status should not be empty..";
i=1;
}
if(i == 0)
{
return true;
}
else
{
return false;
}
}
</script>