<?php include '_header.php'; ?>
<style>
.card-body {
/* -ms-flex: 1 1 auto;
flex: 1 1 auto; */
min-height: 1px;
display: grid;
padding: 0.25rem;
}
.stars{
color: #ffa500;
}
.container {
background: black;
}
.nav-active{
background-color: #d5d5d5;
color: black;
}
body{
background-color: #0e0e0e !important;
}
</style>
<div class="container p-0 position-relative " >
<div class="product-h1 p-3" style="min-height: 1154px;">
<h1 class="text-left mt-2 mb-0 ml-5" style="color: #dc960f;"></h1>
<header class="header-line position-relative d-flex mb-4">
<h3 class="pr-3" style="background: black; z-index: 10;">
<span class="text-responsive" style="color:#dc960f;">THAISOHO DOCUMENT</span>
<div class="text-right" style="color: #dc960f; font-size: 16px;">Download document</div>
</h3>
</header>
<div class="row justify-content-center m-0" style="">
<div class="col-12 text-right mb-3">
<div class="form-inline">
<nav aria-label="breadcrumb">
<ol class="breadcrumb mb-0" style="background-color: #fff0!important;">
<li class="breadcrumb-item "><a style="color: #dc960c;" href="index.php">REFERENCE SITE</a></li>
<li class="breadcrumb-item "><a style="color: #dc960c;" href="download.php">DOWNLOAD</a></li>
</ol>
</nav>
<a href="index.php" class="btn ml-auto btn-warning"> <i class="fa fa-chevron-double-left"></i> BACK</a>
</div>
</div>
<div class="col-12">
<?php
$query_product = mysqli_query($dbc , "SELECT * FROM `document` ");
while ($result = mysqli_fetch_assoc($query_product)) { ?>
<div class="form-inline docs" style="padding: 10px; background-color: #dc960f; color: white;">
<?=$result['document']?>
<a href="Admin/files/<?=$result['files']?>" class="btn-sm ml-auto btn-warning">Download</a>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
<?php include '_footer.php'; ?>
</body>
</html>