-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch_2.php
77 lines (69 loc) · 2.7 KB
/
search_2.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Students Record</title>
<?php include 'links.php' ?>
<?php include 'style.css' ?>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 mt-4">
<div class="card">
<div class="card-header">
<h4 class="card-title">Search Students Data</h4>
</div>
<div class="card-body">
<form action="" method="POST">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" name="search_value" class="form-control" placeholder="Search Name,Enrollment NO.,Caste">
</div>
</div>
<div class="col-md-6">
<button type="submit" name="search_btn" class="btn btn-primary">Search</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="main-div">
<div class="center-div">
<div class="table-responsive">
<table>
<thead>
<tr>
<th>Sno.</th>
<th>Name</th>
<th>Date_of_Birth</th>
<th>Blood_Group</th>
<th>Caste_Category</th>
<th>Nationality</th>
<th>Address</th>
<th>Mobile_No</th>
<th>Alternate_No</th>
<th>Programme_Name</th>
<th>Enrollment_No</th>
<th>Year</th>
<th>Shift</th>
<th>No_of_Course</th>
<th>Last_Exam</th>
<th>Result</th>
<th>Marks</th>
<th>Percentage</th>
<th>Parent_Name</th>
<th>Occupation</th>
<th>Phone_No</th>
<th>Parent_Address</th>
<th>Guardian_Name</th>
<th>Guardian_Address</th>
<th>Contact_No</th>
<th>Contact_No_2</th>
<th colspan="2">Edit/Delete</th>
</tr>
</thead>
<tbody>