<?php
include '../layout/header.php';
 ?>
    <!-- Page Title
 ============================================= -->
    <section id="page-title" class="page-title-parallax page-title-dark" style="background-image: url('../images/inner-headers/about-header.jpg'); padding: 70px 0;" data-stellar-background-ratio="0.3">

        <div class="container clearfix">
            <h1>Download</h1>
            <span>All India Institute of Medical Sciences, Raipur</span>
            <ol class="breadcrumb">
                <li><a href="#">Home</a></li>
                <li><a href="#">Vacancies</a></li>
                <li class="active">Download</li>
            </ol>
        </div>

    </section>
    <!-- #page-title end -->

    <!-- Content
 ============================================= -->
    <section id="content">
        <div class="content-wrap">
            <div class="container topmargin clearfix">
                <div class="table-responsive">
                    <table class="table table-bordered table-striped nobottommargin">
                        <thead>
                            <tr>
                                <th>S No</th>
                                <th>Title</th>
                                <th>Download</th>
                            </tr>
                        </thead>
                        <tbody>
                        <?php
                $table="vacanciesdownload";
                $a=1;
				$did=0;
                $stmt = $con->prepare("select * from $table where did = ? order by id DESC  ");
                $stmt->bind_param('i', $did);
                $stmt->execute();
                $result = $stmt->get_result();
                while($view=$result->fetch_assoc()){
                    $s=$a++;
                    $id= $view['id'];
                    $title=$view['title'];
                    $htitle=$view['htitle'];
                    $did=$view['did'];
                    $document=$view['filename'];
                    $traget='../upload/vacanciesdownload/'.$document;
                    $posteddate=$view['date'];
                   ?>
                            <tr>
                                <td><?php echo $s ?></td>
                                <td><?php echo $title ?></td>
                                <td>
                                <a href="<?php echo $traget ?>" target="_blank" class="button button-rounded button-aqua">
                                <i class="icon-download2"></i>Download
                                </a>
                                </td>
                            </tr>
                            <?php } ?>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </section>

    <?php
 include '../layout/footer.php';
  ?>