-
Notifications
You must be signed in to change notification settings - Fork 0
/
studentm2.php
65 lines (31 loc) · 1.31 KB
/
studentm2.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
<?php
include("header.php");
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="student.css">
</head>
<body>
<div class="div1">M.Tech <B>STUDENTS 2</B><sup>nd year</sup> </div>
<?php
include("config.php");
$sql = "SELECT * FROM studentm where year=2";
$result = $con->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) { ?>
<div style="margin-left: 120px; height: 250px;width: 500px;float: left; margin-top: 40px;box-shadow: 3px 3px 3px 3px gray;">
<div style="height: 200px;width: 200px;float: left;"><img src="<?php echo $row["image"]; ?>" height="160px;" width="160px;" style="margin-top: 20px; margin-left: 20px;" >
<b><p style="margin-left: 25px; font-size: 20px; ">Rahul Yadav</p></b></div>
<div style=" height: 250px; width: 300px;float: right; "><b><p style="margin-left: 25px; font-size: 20px; ">Rahul Yadav</p></b><br><b><p style="margin-left: 25px; font-size: 20px; ">Rahul Yadav</p></b><br><b><p style="margin-left: 25px; font-size: 20px; ">Rahul Yadav h hs fowheo ooc eihc oihwoic wehr heo heh </p></b></div>
</div>
<?php
}
} else {
echo "0 results";
}
?>
</body>
</html>