-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathawards_projects.php
91 lines (62 loc) · 1.61 KB
/
awards_projects.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
<?php
include("header.php");
?>
<div class="banner-image w-100 vh-100 d-flex justify-content-center align-items-center" style="background-image: url('images/bannerimg.jpg');">
<div class="content text-center">
<h1 class="text-white">Awards & Projects</h1>
</div>
</div>
<div class="container">
<h3 style="color:blue">
Awards
</h3>
</div>
<div class="p-3 border_card ">
<div class="container">
<ul>
<li>
<p>
Best innovation award- UNDP-2021.
</p>
</li>
<li>
<p>
Innovation in Food award- PETA-2020.
</p>
</li>
<li>
<p>
Best Women Scientist Award-SRBS-2020.
</p>
</li>
</ul>
</div>
</div>
<!-- Main Content Area -->
<div class="container">
<h3 style="color:blue">
Projects
</h3>
</div>
<div class=" p-3 border_card ">
<div class="container">
<?php
$connection = mysqli_connect("localhost", "u731109599_kavyadb", "bUH:OXI9GZ]9", "u731109599_kavyadb");
$db = mysqli_select_db($connection, '');
$query = "SELECT * FROM `awards_projects`";
$query_run = mysqli_query($connection, $query);
while ($row = mysqli_fetch_array($query_run)) {
?>
<ul>
<li>
<p><?php echo $row['description']; ?></p>
</li>
</ul>
<?php
}
?>
</div>
</div>
<?php
include("footer.php");
?>