MINI MINI MANI MO
<?php
require 'secureadmin/admin/config.php';
$queryc="select * from page_contents where page='Policy' order by id desc";
$resc=mysql_query($queryc)or die("Query does not execute...");
$rowc= mysql_fetch_array($resc);
$cid= $rowc['id'];
$page=$rowc['page'];
$queryh="select * from seo_settings where typeid='$cid' and type='content'";
$resh=mysql_query($queryh)or die("Query does not execute...");
$rowh= mysql_fetch_array($resh);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php echo $rowh['meta_title'];?></title>
<meta name="keywords" Content="<?php echo $rowh['meta_keyword'];?>"/>
<meta name="description" Content="<?php echo $rowh['meta_description'];?>"/>
<meta name="author" Content="<?php echo $rowh['author'];?>"/>
<meta name="robots" Content="<?php echo $rowh['robots'];?>"/>
<meta name="googlebot" Content="<?php echo $rowh['googlebot'];?>"/>
<meta name="identifier" Content="<?php echo $rowh['googleverify'];?>"/>
<meta name="coverage" Content="<?php echo $rowh['coverage1'];?>"/>
<meta name="country" Content="<?php echo $rowh['coverage2'];?>"/>
<meta name="revisit" Content="<?php echo $rowh['coverage3'];?>"/>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/custom.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<?php include('header.php'); ?>
</div>
<!-- /header -->
<section class="mainContainer">
<div class="container">
<div class="row contentSection">
<div class="row">
<div class="col-md-9 col-sm-7 col-xs-12">
<h1>Policy</h1>
</div>
</div>
<?php
$sql2="select * from page_contents where page='Policy' order by id desc";
$res2=mysql_query($sql2);
while($rows=mysql_fetch_array($res2))
{
?>
<div class="row">
<div class="col-md-9 col-sm-7 col-xs-12">
<?php echo $rows['contents']?>
</div>
<div class="col-md-3 col-sm-5 col-xs-12">
<div class="thumbnail pull-right"><img alt="<?php echo $rows['page']?>" class="img-responsive" src="galleryimg/<?php echo $rows['image'];?>" title="<?php echo $rows['page']?>" width="233px" height="175px"></div>
</div>
</div>
<?php } ?>
</div>
</div>
<!--/.container-->
</section>
<!-- /services -->
<?php include('footer.php'); ?>
<!--/copy right-->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
$(window).bind('scroll', function() {
var navHeight = $("#topBox").height();
($(window).scrollTop() > navHeight) ? $('nav').addClass('goToTop') : $('nav').removeClass('goToTop');
($(window).scrollTop() > navHeight) ? $('nav li:first-child').addClass('staticLogo') : $('nav li:first-child').removeClass('staticLogo');
($(window).scrollTop() > navHeight) ? $('.carousel').addClass('slidess') : $('.carousel').removeClass('slidess');
});
});
</script>
</body>
</html>
OHA YOOOO