Your IP : 216.73.216.1


Current Path : /home/www/khana.org.af/server/clips/
Upload File :
Current File : /home/www/khana.org.af/server/clips/read.php

<?php
require_once('../conn.php');


$query = "SELECT * FROM `clips` order by id desc";
if (isset($_POST['limit']) && $_POST['limit'] != 'all') {
  $query .= ' LIMIT ' . $_POST['limit'];
}

$sleect = $conn->prepare($query);
$sleect->execute();
$gall = '';
while ($row = $sleect->fetch(PDO::FETCH_ASSOC)) {
  $gall .= '<div class="col-lg-3">
                  <article class="position-relative h-100">

                    <div class="post-img position-relative overflow-hidden">
                      <video controls  height="204">
                        <source src="./assets/video/'.$row['url_clips'].'" type="video/mp4">
                        Your browser does not support the video tag.
                      </video>

                      <span class="post-date">Clips</span>
                    </div>

                    <div class="post-content d-flex flex-column">

                      <h3 class="post-title">' . $row['subjects'] . '</h3>

                      <div class="meta d-flex align-items-center">
                        
                        <div class="d-flex align-items-center">
                          <i class="bi bi-calendar"></i> <span class="ps-2">' .$row['dates']. '</span>
                        </div>
                      </div>


                      <hr>

                      <a href="#" class="readmore stretched-link"><span></span><i class="bi bi-arrow-right"></i></a>

                    </div>

                  </article>
                </div><!-- End post list item -->
';
}

echo $gall;