
PK 
<?php
ob_start();
//error_reporting(E_ALL ^ E_NOTICE);
@session_start();
ini_set('allow_url_include',1);
date_default_timezone_set("Asia/Kolkata");
set_time_limit(600);
ini_set('max_execution_time',600);
include 'admin/includes/settings/constant.php';
//include '../includes/settings/db.php';
require_once 'admin/includes/settings/PDODB.php';
include 'admin/includes/modules/functions.php';
$function = new FUNCTIONS();
$slugtitle = str_replace('_', ' ', $_GET['title']);
$allimagesdata = $function->getCirculardetail($id=NULL,$title=$slugtitle,$status=1,$orderBy='DESC');
//print_r($allimagesdata[0]['title']); exit;
$Title=$allimagesdata[0]['title'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>RWA Sectore 40 Noida</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<link href="vendor/bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/noida40.css" rel="stylesheet">
<link href="css/bootstrap-dropdownhover.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<!-- lightgallery css -->
<link href="css/lightgallery.css" rel="stylesheet">
</head>
<body>
<?php include_once 'header.php'; ?>
<!-- Page Content -->
<div class="container-fluid padding-0">
<div class="container mt-5">
<div class="main-post-intro-title">
<h2 class="text-center"><?=$Title;?></h2>
</div>
<div class="row justify-content-center rwa-gallery">
<ul id="lightgallery" class="list-unstyled">
<?php foreach ($allimagesdata as $key => $value) { ?>
<li class="col-lg-3 col-md-4 col-sm-6" data-src="admin/uploads/circularsminutes/<?=$value['file_name'];?>">
<a href="">
<img class="img-responsive" src="admin/uploads/circularsminutes/<?=$value['file_name'];?>">
</a>
</li>
<?php } ?>
</ul>
</div>
</div>
<!-- end Page Content -->
</div>
<!-- Footer -->
<?php include_once'footer.php';?>
<!-- End Footer -->
<?php include_once'login.php';?>
<!-- Bootstrap core JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="js/bootstrap-4-hover-navbar.js"></script>
<script src="js/lightgallery-all.min.js"></script>
<script src="js/jquery.mousewheel.min.js"></script>
<script src="js/jquery.form-validator.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#lightgallery').lightGallery();
});
</script>
</body>
</html>


PK 99