Server : Apache System : Linux server.xvl.jdw.mybluehostin.me 5.14.0-611.27.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 4 04:40:11 EST 2026 x86_64 User : critatp ( 1208) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system Directory : /home/critatp/public_html/ |
<?php
include("config.php");
$photos = $db->selectAll('inpress', '*', 'ORDER BY id DESC');
?>
<!DOCTYPE HTML>
<html lang="En">
<head>
<meta charset="utf-8">
<title>CHIRANJEEVI REDDY INSTITUTE OF ENGINEERING & TECHNOLOGY</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="language" content="EN">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/jquery.megamenu.css" media="all" />
<link href="css/style.css" rel="stylesheet" media="all" />
<link rel="stylesheet" href="css/meanmenu.css" />
<noscript>
<link rel="stylesheet" href="css/jsoff.css" />
</noscript>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/font-size.js"></script>
<script src="js/styleswitcher.js"></script>
<script src="js/custom1.js"></script>
<script>
$(function() {
$('#myCarousel').carousel({
interval: 3000,
pause: "false"
});
$('#playButton').click(function() {
$('#myCarousel').carousel('cycle');
});
$('#pauseButton').click(function() {
$('#myCarousel').carousel('pause');
});
});
</script>
<script src="js/superfish.js"></script>
<script src="js/jquery.meanmenu.js"></script>
<script>
/* Menu Accesss */
(function($) { //create closure so we can safely use $ as alias for jQuery
$(document).ready(function() {
// initialise plugin
var example = $('#navaccess, #menu').superfish({
//add options here if required
});
// buttons to demonstrate Superfish's public methods
$('.destroy').on('click', function() {
example.superfish('destroy');
});
$('.init').on('click', function() {
example.superfish();
});
$('.open').on('click', function() {
example.children('li:first').superfish('show');
});
$('.close').on('click', function() {
example.children('li:first').superfish('hide');
});
});
})(jQuery);
</script>
<script>
jQuery(document).ready(function () {
jQuery('#main-nav nav').meanmenu()
});
</script>
<script>
$(document).ready(function(){
//$(function(){
$('#vertical-ticker').totemticker({
row_height : '55px' ,
next : '#ticker-next',
previous : '#ticker-previous',
stop : '#stop',
start : '#start',
mousestop : true
});
$('#vertical-ticker1').totemticker({
row_height : '55px' ,
next : '#ticker-next',
previous : '#ticker-previous',
stop : '#stop',
start : '#start',
mousestop : true
});
$('#vertical-ticker2').totemticker({
row_height : '55px' ,
next : '#ticker-next',
previous : '#ticker-previous',
stop : '#stop',
start : '#start',
mousestop : true
});
//});
});
</script>
<style>
.right-top-buttons li:nth-last-child(2) a {
border-right: 0px solid #ffffff;
color: #fff;
/* line-height: 25px;*/
margin: 0px 0px 1px;
padding: 7px 18px;
font-weight: 500;
}
.third-nav li:nth-last-child(2) a {
border-right: none;
}
.namlin{
background: #edb903;
padding: 1px;
}
.namlin a{
color:#000;
}
.namlin1{
background: #333;
padding: 1px;
}
.namlin1 a{
color:#fff;
}
tr td{
vertical-align: top;
text-align: top;
}
</style>
</head>
<body>
<?php include("includes/header.php"); ?>
<div class="body-container">
<div class="row-container">
<div class="container highconcontainer">
<div class="bg-gray">
<div class="col-sm-9">
</div>
</div>
</div>
<div class="container sidebar">
<div class="row">
<div class="col-sm-3">
<?php include("includes/media-menu.php"); ?>
</div>
<div class="col-sm-9">
<div class="main-content">
<div class="home-main-contant inner-main-contant">
<div class="row" style="font-size:14px; padding:15px;">
<?php
if(count($photos) != 0){
foreach($photos as $photo){
?>
<div style="float:left; width:310px; height:170px; padding:5px; border:solid 1px #ddd; margin:5px;">
<a href="<?php echo $admin_url.$photo->image; ?>" data-fancybox="images">
<img src="<?php echo $admin_url.$photo->image; ?>" width="300" height="160">
</a>
</div>
<?php
}
}
?>
</div>
</div>
<!-- </section> -->
<!-- </div> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</ul>
<?php include("includes/footer.php"); ?>
</body>
</html>