-
Notifications
You must be signed in to change notification settings - Fork 7
/
fertilizer_recommendation.php
199 lines (155 loc) · 6.27 KB
/
fertilizer_recommendation.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
<!DOCTYPE html>
<html>
<?php include ('header.php'); ?>
<body class="bg-white" id="top">
<?php include ('nav.php'); ?>
<section class="section section-shaped section-lg">
<div class="shape shape-style-1 shape-primary">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<!-- ======================================================================================================================================== -->
<div class="container-fluid ">
<div class="row">
<div class="col-md-8 mx-auto text-center">
<span class="badge badge-danger badge-pill mb-3">Recommendation</span>
</div>
</div>
<div class="row row-content">
<div class="col-md-12 mb-3">
<div class="card text-white bg-gradient-success mb-3">
<form role="form" action="#" method="post" >
<div class="card-header">
<span class=" text-info display-4" > Fertilizer Recommendation </span>
<span class="pull-right">
<button type="submit" value="Recommend" name="Fert_Recommend" class="btn btn-warning btn-submit">SUBMIT</button>
</span>
</div>
<div class="card-body text-dark">
<table class="table table-striped table-hover table-bordered bg-gradient-white text-center display" id="myTable">
<thead>
<tr class="font-weight-bold text-default">
<th><center> Nitrogen</center></th>
<th><center>Phosporous</center></th>
<th><center>Potasioum</center></th>
<th><center>Temparature</center></th>
<th><center>Humidity</center></th>
<th><center>Soil Moisture</center></th>
<th><center>Soil Type</center></th>
<th><center>Crop</center></th>
</tr>
</thead>
<tbody>
<tr class="text-center">
<td>
<div class="form-group">
<input type = 'number' name = 'n' placeholder="Nitrogen Eg:37" required class="form-control">
</div>
</td>
<td>
<div class="form-group">
<input type = 'number' name = 'p' placeholder="Phosphorus Eg:0" required class="form-control">
</div>
</td>
<td>
<div class="form-group">
<input type = 'number' name = 'k' placeholder="Pottasium Eg:0" required class="form-control">
</div>
</td>
<td>
<div class="form-group">
<input type = 'number' name = 't' placeholder="Temperature Eg:26" required class="form-control">
</div>
</td>
<td>
<div class="form-group">
<input type = 'number' name = 'h' placeholder="Humidity Eg:52" required class="form-control">
</div>
</td>
<td>
<div class="form-group">
<input type = 'number' name='soilMoisture' placeholder="Soil Moisture Eg:38" required class="form-control">
</div>
</td>
<td>
<div class="form-group ">
<select name="soil" class="form-control">
<option value="">Select Soil Type</option>
<option value="Sandy">Sandy</option>
<option value="Loamy">Loamy</option>
<option value="Black">Black</option>
<option value="Red">Red</option>
<option value="Clayey">Clayey</option>
</select>
</div>
</td>
<td>
<div class="form-group ">
<select name="crop" class="form-control">
<option value="">Select Crop</option>
<option value="Maize">Maize</option>
<option value="Sugarcane">Sugarcane</option>
<option value="Cotton">Cotton</option>
<option value="Tobacco">Tobacco</option>
<option value="Paddy">Paddy</option>
<option value="Barley">Barley</option>
<option value="Wheat">Wheat</option>
<option value="Millets">Millets</option>
<option value="Oil seeds">Oil seeds</option>
<option value="Pulses">Pulses</option>
<option value="Ground Nuts">Ground Nuts</option>
</select>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</form>
</div>
<div class="card text-white bg-gradient-success mb-3">
<div class="card-header">
<span class=" text-success display-4" > Result </span>
</div>
<h4>
<?php
if(isset($_POST['Fert_Recommend'])){
$n=trim($_POST['n']);
$p=trim($_POST['p']);
$k=trim($_POST['k']);
$t=trim($_POST['t']);
$h=trim($_POST['h']);
$sm=trim($_POST['soilMoisture']);
$soil=trim($_POST['soil']);
$crop=trim($_POST['crop']);
echo "Recommended Fertilizer is : ";
$Jsonn=json_encode($n);
$Jsonp=json_encode($p);
$Jsonk=json_encode($k);
$Jsont=json_encode($t);
$Jsonh=json_encode($h);
$Jsonsm=json_encode($sm);
$Jsonsoil=json_encode($soil);
$Jsoncrop=json_encode($crop);
$command = escapeshellcmd("python ML/fertilizer_recommendation/fertilizer_recommendation.py $Jsonn $Jsonp $Jsonk $Jsont $Jsonh $Jsonsm $Jsonsoil $Jsoncrop ");
$output = passthru($command);
echo $output;
}
?>
</h4>
</div>
</div>
</div>
</div>
</section>
<?php require("footer.php");?>
</body>
</html>