-
Notifications
You must be signed in to change notification settings - Fork 0
/
publication.php
52 lines (42 loc) · 1.15 KB
/
publication.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
<?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">Publication</h1>
</div>
</div>
<!-- Main Content Area -->
<div class="container-fluid my-5 d-grid gap-5">
<!-- <div>
<h3 style="color:blue">
Journal Articles (SCI/Scopus/WoS Indexed)
</h3>
</div> -->
<div class="p-5 border_card">
<?php
$connection = mysqli_connect("localhost", "u731109599_kavyadb","bUH:OXI9GZ]9", "u731109599_kavyadb");
$db=mysqli_select_db($connection,'');
$query="SELECT * FROM `publication` ORDER BY `sno` DESC";
$query_run=mysqli_query($connection,$query);
while($row=mysqli_fetch_array($query_run))
{
?>
<div class="my-0 p-2">
<ul>
<li><h4><?php echo $row['authors']; ?></h4>
<p>
<?php echo $row['abstract']; ?>
</p>
</li>
</ul>
</div>
<?php
}
?>
</div>
</div>
<?php
include("footer.php");
?>