| Current Path : /var/www/html/samantasintu/ |
| Current File : /var/www/html/samantasintu/resources.php |
<?php
require 'dbcon.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="logo.png" type="image/x-icon">
<title>Developed Resources</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<link href="loader.css" rel="stylesheet">
<link href="ss.css" rel="stylesheet">
<script src="jquery.js"></script>
<script src="lcustom.js"></script>
<link rel="stylesheet" href="bt.css">
<style>
.details {
display: none;
}
.main-row:hover {
cursor: pointer;
background-color: #f0f0f0;
}
</style>
</head>
<body id="section_1">
<section class="preloader">
<div class="spinner">
<span class="spinner-rotate"></span>
</div>
</section>
<div class="container-fluid">
<div class="row">
<div class="col-sm-6 bg-dark text-white p-4 fs-3">
<h1></h1>
<a href="samantaHomepage.html" style="all: unset; cursor: pointer;">
Biochemistry & Bioinformatics Lab
</a>
</div>
<div class="col-sm-6 bg-dark text-white p-4 fs-5 text-lg-end text-sm-start">
<a href="https://www.iiita.ac.in/" style="all: unset; cursor: pointer;">
<div>Indian Institute of Information Technology, Allahabad</div>
<div>भारतीय सूचना प्रौद्योगिकी संस्थान, इलाहाबाद</div>
</a>
</div>
</div>
</div>
<nav class="navbar navbar-expand-sm bg-warning" style="font-weight:500">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#mynavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="mynavbar">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link" href="samantaHomepage">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="group-members">Group Members</a>
</li>
<li>
<a class="nav-link" href="teaching-courses">Teaching</a>
</li>
<li>
<a class="nav-link" href="publications">Research & Publications</a>
</li>
<li>
<a class="nav-link active" href="resources">Resources</a>
</li>
<li>
<a class="nav-link" href="patents-&-projects">Patents & Projects</a>
</li>
<li>
<a class="nav-link" href="association">Association</a>
</li>
<li>
<a class="nav-link" href="outreach">Outreach</a>
</li>
<li>
<a class="nav-link" href="news">News</a>
</li>
<li>
<a class="nav-link" href="gallery">Gallery</a>
</li>
<li>
<a class="nav-link" href="contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid" style="margin-top: 1.5%;">
<div class="row">
<div class="col-sm-12 bg-white text-black text-center p-2 fs-4" style="font-weight: 500;">
Resources Developed by Dr. Samanta's Research Group
</div>
</div>
</div>
<div style="margin-top: 1.4%;"></div>
<div class="table-responsive" style="width: 98%; margin-left:auto; margin-right:auto;">
<table class="table table-bordered table-hover table-striped">
<tr>
<th style="text-align: center; font-weight: 500;">Resource Type</th>
<th style="text-align: center; font-weight: 500;">Resource Name & Link to Publication</th>
<th style="text-align: center; font-weight: 500;">Access Link</th>
</tr>
<?php
$res = array('Database', 'Tool');
foreach ($res as $r_) {
$sql = "SELECT * FROM `data` WHERE category = '$r_'";
$result = $con->query($sql);
while ($row = $result->fetch_assoc()) {
?>
<tr>
<td><?php echo $r_; ?></td>
<td>
<div><?php echo $row['authors'] ?></div>
<div><a style="text-decoration: none;" class="bb" href="<?php echo $row['location']; ?>"><?php echo $row['title']; ?></a></div>
</td>
<td><a style="text-decoration: none;" class="bb" href="<?php echo $row['year']; ?>">Go to <?php echo $row['authors']; ?></a></td>
</tr>
<?php
}
}
?>
</table>
</div>
<footer class="mt-3 text-center p-2"
style="position: fixed; color:aquamarine; background-color: black; font-size: small; left: 0; bottom: 0; width: 100%;">
Designed & developed by Mr. Rajat Kumar Mondal (M.Tech Bioinformatics 2022-24 Batch) | Last Updated on
<?php
require "dbcon.php";
$sql = "SELECT * FROM `data` WHERE `category` = 'last_update'";
$result = $con->query($sql);
$c = 1;
while ($row = $result->fetch_assoc()) {
echo $row['authors'];
}
?> | Copyright@2024, All Rights Reserved |
IIIT-Allahabad, Uttar Pradesh 211 015, India
</footer>
</body>
</html>