Al-HUWAITI Shell
Al-huwaiti


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/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/critatp/public_html/infrastructure.php
<?php
include("config.php");

$title = $_GET['title'];

$infra_info = $db->selectRow('infrastructure', '*', array('slug' => $title));


$photos = $db->select('gallery', '*', array('gallery_type'=>'infrastructure', 'pid'=>$infra_info->id
));

?>
<!DOCTYPE HTML>
<html lang="En">
<head>
<meta charset="utf-8">
<title>CHIRANJEEVI REDDY INSTITUTE OF ENGINEERING &amp; 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-12">
          <div class="main-content">
            <div class="home-main-contant inner-main-contant">
                
			<h1 style="font-size:26px;color:red" align="center">Infrastructure - <?php echo ucwords(str_replace('-', ' ', $title)); ?></h1>
               <?php if(!empty($infra_info->content)) echo $infra_info->content; ?>
			
			<?php if(count($photos) != 0){ ?>
			<h3><?php echo ucwords(str_replace('-', ' ', $title)); ?> - Photos</h3>
			 
			<?php foreach($photos as $photo){ ?>
			<div style="float:left; width:315px; height:170px; padding:5px; border:solid 1px #ddd; margin:5px;">
				<figure class="image-box">
					<a href="admin/<?php echo $photo->image; ?>" class="lightbox-image" title="Image Caption Here" data-fancybox-group="example-gallery">
					<img src="admin/<?php echo $photo->image; ?>" width="305" height="160" />
					</a>
				</figure>
			</div>
			<?php } } ?>
		
            </div>
            <!-- </section> -->
            <!--  </div> -->
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
</div>
</ul>
<?php include("includes/footer.php"); ?>
</body>
</html>

Al-HUWAITI Shell