Revonzy Mini Shell

Revonzy Mini Shell

Şuanki Dizin: /home/wwwdreamtechnolo/public_html/kpmim.org/admin/
Dosya Yükle :
Şuanki Dosya : /home/wwwdreamtechnolo/public_html/kpmim.org/admin/online-feedback-report.php

<?php
	require_once("lib/functions.php");
	$db = new login_function();
	$flag = 0;
	$actual_image_name="";
	$success_msg = 0;
	$image_error="";
	$department_error="";
	$succ_flag= 0 ;
	$department = "";
	$description="";
	$succ_flag = 0;
	if(!isset($_SESSION['current_login_admin']))
	{
		header("Location:/admin/index.php");
	}
	if(isset($_SESSION['current_login_admin']))
	{
		$email	=	$_SESSION['current_login_admin'];
	}
		
		
	if(isset($_GET['delete_id']))
	{
		 $del_id	=	$_GET['delete_id'];
		 $db->delete_online_feedback($del_id);
		
		 $success_msg	=	1;
	}
?>
<?php
	require_once('header.php');
?>

        <div id="page-wrapper">
            <div class="row">
                <div class="col-lg-12">
                    <h1 class="page-header">Online Feedback Report</h1>
					<?php
					if($succ_flag == 1)
					{
					?>
						<div class="alert alert-success">

					Record Deleted Successfully.
						</div>
					<?php
					}
					?>
					<?php
					if($success_msg == 2)
					{?>
					<div class="alert alert-danger">

					Images Deleted Successfully.
					</div>
					<?php
					}
					?>
					
                </div>
                
            </div>
            
							
                <div class="row">
                 <div class="col-lg-12">
                    <div class="panel panel-default">
                        <div class="panel-heading">
                           Online Feedback Report
                        </div>
                        <!-- /.panel-heading -->
                        <div class="panel-body">
                            <div class="table-responsive">
                                <table class="table table-striped table-bordered table-hover">
                                    <thead>
                                        <tr>
                                            <th width="50">Sr. No</th>
                                            <th>Student Name</th>
											<th>Class</th>
											<th>Syllabus</th>
											<th>Preparation</th>
											<th>Communicationt</th>
											<th width="30">Approach</th>
											<th width="30">Internal Evaluation</th>
											<th width="30">Discussion</th>
											<th width="30">Promote </th>
											<th width="30">Mentoring </th>
											<th width="30"> Opportunities </th>
											<th width="30">Task Inform</th></th>
											<th width="30">Assign Task </th>
											<th width="30">Illustrate With Example </th>
											<th width="30">Challenges </th>
											<th width="30">Identify Weakness </th>
											<th width="30">Efforts In Imrovement </th>
											<th width="30">Centric Method </th>
											<th width="30">Encourage </th>
											<th width="30">SoftS kill </th>
											<th width="30"> ICT Tools</th>
											<th width="30">Overall Quality</th>
											<th width="30">Suggestion1</th></th>
											<th width="30"> Suggestion2</th>
											<th width="30">Suggestion3</th>
											 <th width="50">Action</th>
                                        </tr>
                                    </thead>
                                    <tbody>
									<?php
									
										$report_details = $db->get_all_online_feedback();
										if(!empty($report_details))
										{
											$counter =0;
											foreach($report_details as $record)
											{
												$id				=	$report_details[$counter][0];
												$full_name		=	$report_details[$counter][1];
												$sclass			=	$report_details[$counter][2];
												$syllabus		=	$report_details[$counter][3];
												$classes		=	$report_details[$counter][4];
												$communication	=	$report_details[$counter][5];
												$approach		=	$report_details[$counter][6];
												$evaluation		=	$report_details[$counter][7];
										    	$performance	=	$report_details[$counter][8];
												$internship		=	$report_details[$counter][9];
												$process		=	$report_details[$counter][10];
										    	$opportunities	=	$report_details[$counter][11];
												$programme		=	$report_details[$counter][12];
												$task	    	=	$report_details[$counter][13];
												$concepts		=	$report_details[$counter][14];
												$challenges		=	$report_details[$counter][15];
												$help		    =	$report_details[$counter][16];
												$review	    	=	$report_details[$counter][17];
												$centric		=	$report_details[$counter][18];
										    	$encourage	    =	$report_details[$counter][19];
												$skills		    =	$report_details[$counter][20];
												$sreview		=	$report_details[$counter][21];
												$quality		=	$report_details[$counter][22];
												$txtcno		    =	$report_details[$counter][23];
												$txtcno1		=	$report_details[$counter][24];
												$txtcno2		=	$report_details[$counter][25];
												
											
												
												
									?>
                                        <tr>
                                            <td><?php echo $counter+1; ?></td>
											<td><?php echo $full_name; ?></td>
											<td><?php echo $sclass; ?></td>
											<td><?php echo $syllabus; ?></td>
											<td><?php echo $classes; ?></td>
											<td><?php echo $communication; ?></td>
											<td><?php echo $approach; ?></td>
											<td><?php echo $evaluation; ?></td>
											<td><?php echo $performance; ?></td>
											<td><?php echo $internship	; ?></td>
											<td><?php echo $process; ?></td>
											<td><?php echo $opportunities; ?></td>
											<td><?php echo $programme; ?></td>
											<td><?php echo $task; ?></td>
											<td><?php echo $concepts; ?></td>
											<td><?php echo $challenges; ?></td>
											<td><?php echo $help; ?></td>
											<td><?php echo $review; ?></td>
											<td><?php echo $centric; ?></td>
											<td><?php echo $encourage; ?></td>
											<td><?php echo $skills; ?></td>
											<td><?php echo $sreview; ?></td>
											<td><?php echo $quality; ?></td>
											<td><?php echo $txtcno; ?></td>
											<td><?php echo $txtcno1; ?></td>
											<td><?php echo $txtcno2; ?></td>
											
                                            <td><a href="online-feedback-report.php?delete_id=<?php echo $id;?>" onclick="return confirm('Are you sure?');">Delete</a></td>
										</tr>
                                       <?php
										$counter ++;
											}
										}else
										{
										?>
										<td colspan="27">No Data Found...</td>
										<?php
										}
									   
									   
									   ?>
                                    </tbody>
                                </table>
                            </div>
                            <!-- /.table-responsive -->
                        </div>
                        <!-- /.panel-body -->
                    </div>
                    <!-- /.panel -->
                </div>
             
                <!-- /.col-lg-6 -->
            </div>
                                
                                   
                               
                                
                            </div>
                           
                        </div>
                        
                    </div>
                    
                </div>
              
            </div>
            
        </div>
       

    </div>
    

</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