-
Notifications
You must be signed in to change notification settings - Fork 7
/
crop_prediction.php
151 lines (112 loc) · 4.28 KB
/
crop_prediction.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
<!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 ">
<div class="row">
<div class="col-md-8 mx-auto text-center">
<span class="badge badge-danger badge-pill mb-3">Prediction</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">
<div class="card-header">
<span class=" text-success display-4" > Crop Prediction </span>
</div>
<div class="card-body text-dark">
<form role="form" action="#" method="post" >
<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> State</center></th>
<th><center>District</center></th>
<th><center>Season</center></th>
<th><center>Prediction</center></th>
</tr>
</thead>
<tbody>
<tr class="text-center">
<td>
<div class="form-group">
<select onchange="print_city('state', this.selectedIndex);" id="sts" name ="stt" class="form-control" required></select>
<script language="javascript">print_state("sts");</script>
</div>
</td>
<td>
<div class="form-group ">
<select id ="state" name="district" class="form-control" required>
<option value="">Select District</option>
</select>
<script language="javascript">print_state("sts");</script>
</div>
</td>
<td>
<div class="form-group ">
<select name="Season" class="form-control">
<option value="">Select Season ...</option>
<option name="Kharif" value="Kharif">Kharif</option>
<option name="Whole Year" value="Whole Year">Whole Year</option>
<option name="Autumn" value="Autumn">Autumn</option>
<option name="Rabi" value="Rabi">Rabi</option>
<option name="Summer" value="Summer">Summer</option>
<option name="Winter" value="Winter">Winter</option>
</select>
</div>
</td>
<td>
<center>
<div class="form-group ">
<button type="submit" name="Crop_Predict" class="btn btn-success btn-submit">Predict</button>
</div>
</center>
</td>
</tr>
</tbody>
</table>
</form>
</div>
</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['Crop_Predict'])){
$state=trim($_POST['stt']);
$district=trim($_POST['district']);
$season=trim($_POST['Season']);
echo "Crops grown in ".$district." during the ".$season." season are :- ";
$JsonState=json_encode($state);
$JsonDistrict=json_encode($district);
$JsonSeason=json_encode($season);
$command = escapeshellcmd("python ML/crop_prediction/ZDecision_Tree_Model_Call.py $JsonState $JsonDistrict $JsonSeason");
$output = passthru($command);
echo $output;
}
?>
</h4>
</div>
</div>
</div>
</div>
</section>
<?php require("footer.php");?>
</body>
</html>