-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinsert.html
More file actions
47 lines (46 loc) · 1.52 KB
/
insert.html
File metadata and controls
47 lines (46 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<title>Land</title>
<link href="insert.css" rel="stylesheet">
</head>
<body>
<div class="maindiv">
<!--HTML Form -->
<div class="form_div">
<div class="title">
<h2>Insert Land Details</h2>
</div>
<form action="insert.php" method="post">
<!-- Method can be set as POST for hiding values in URL-->
<h2>Insert Here!</h2><br>
<label>surveyno</label>
<input class="input" name="surveyno" type="text" value=""><br>
<label>district</label>
<input class="input" name="district" type="text" value=""><br>
<label>blockpanchayath</label>
<input class="input" name="blockpanchayath" type="text" value=""><br>
<label>panchayath</label>
<input class="input" name="panchayath" type="text" value=""><br>
<label>location</label>
<input class="input" name="location" type="text" value=""><br>
<label>pno</label>
<input class="input" name="pno" type="text" value=""><br>
<label>annualprecp</label>
<input class="input" name="annualprecp" type="text" value=""><br>
<label>organicc</label>
<input class="input" name="organicc" type="text" value=""><br>
<label>Phosphorous</label>
<input class="input" name="Phosphorous" type="text" value=""><br>
<label>Potassium</label>
<input class="input" name="Potassium" type="text" value=""><br>
<label>ph</label>
<input class="input" name="ph" type="text" value=""><br>
<label>output</label>
<input class="input" name="output" type="text" value=""><br>
<input class="submit" name="submit" type="submit" value="Insert">
</form>
</div>
</div>
</body>
</html>