<?php include("header.php"); ?>
<!--Page Title-->
<section class="page-title" style="background-image: url(img/public.jpg);">
<div class="auto-container">
<div class="row clearfix">
<div class="col-lg-8 col-md-12 col-sm-12 content-column">
<div class="content-box clearfix">
<div class="title pull-left">
<h1>Publication</h1>
</div>
<ul class="bread-crumb pull-right clearfix">
<li><a href="index.html">Home</a></li>
<li>National Conference</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--End Page Title-->
<section class="team-details">
<div class="auto-container">
<div class="row clearfix">
<!--<div class="col-lg-6 col-md-12 col-sm-12 image-column">
<div id="image_block_01">
<div class="image-box">
<div class="pattern-layer" style="background-image: url(assets/images/shape/shape-1.png);"></div>
<figure class="image"><img src="assets/images/resource/about-1.jpg" alt=""></figure>
<div class="icon-holder">
<div class="icon-box"><i class="flaticon-lab"></i></div>
</div>
</div>
</div>
</div>-->
<style>
table td{
padding-bottom:10px;
}
</style>
<div class="col-lg-12 col-md-12 col-sm-12 content-column">
<div id="content_block_01">
<div class="content-box">
<div class="sec-title left">
<h2 style="font-size:30px;"> National Conferences </h2>
<span class="separator"></span>
</div>
<div class="">
<?php
$sql=mysqli_query($conn,"select * from publication where pubtype='National Conferences' ORDER BY convert(`dorder`, decimal) DESC");
while($rw=mysqli_fetch_array($sql)){
?>
<table>
<tbody>
<tr>
<td style="vertical-align:top;"><?php echo nl2br($rw['dorder']); ?>. </td>
<td style="color:#000; line-height:1.7em;">
<?php echo nl2br($rw['pubname']); ?>,
<?php if($rw['author1']!='') { echo nl2br($rw['author1']);} ?>
<?php if($rw['author2']!='') { echo nl2br($rw['author2']);} ?>
<?php if($rw['author3']!='') { echo nl2br($rw['author3']);} ?>
<?php if($rw['author4']!='') { echo nl2br($rw['author4']);} ?>
<?php if($rw['author5']!='') { echo nl2br($rw['author5']);} ?>
<?php if($rw['year']!='') { echo nl2br($rw['year']);} ?>.
<span style="font-weight:bold;"><?php if($rw['title']!='') { echo nl2br($rw['title']);} ?>, </span><?php if($rw['isbn']!='') { echo nl2br($rw['isbn']);} ?>.
</td>
</tr>
</tbody></table>
<?php } ?>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- newsletter-section -->
<!-- newsletter-section end -->
<?php include("footer.php"); ?>
|