Şuanki Dizin: /home/wwwdreamtechnolo/public_html/uesmahilamahavidyalaya.org/old/admin/ |
Şuanki Dosya : /home/wwwdreamtechnolo/public_html/uesmahilamahavidyalaya.org/old/admin/print-feedback-report.php |
<?php require_once("lib/functions.php"); $db = new login_function(); $flag = 0; $actual_image_name = ""; $success_msg = 0; $semester = ""; $succ_flag = 0; $semester_error = ""; 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_student_feedback($del_id); $success_msg = 2; } ?> <div id="page-wrapper"> <div class="row"> <div class="col-lg-12"> <h1 class="page-header" style="text-align:center;">Feedback Report</h1> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="panel panel-default"> <div class="panel-body"> <div class="row"> <div class="row"> <div class="col-lg-12"> <div class="panel panel-default"> <!-- /.panel-heading --> <div class="panel-body"> <h1> Titles </h1> 1. Online educational resources are available and accessible in the library <br /> 2. Internet facility provided in the college is satisfactory <br /> 3. The prescribed books / reading materials are available in the library <br /> 4. Equipment in the lab(s) is in good working conditions <br /> 5. Results are displayed on the boards and website of the college<br /> 6. Separate common rooms for girls and boys are available<br /> 7. Toilets / washrooms are clean and properly maintained<br /> 8. Adequate facilities are available for differentially abled students<br /> 9. The campus is green and eco-friendly<br /> 10. Clean drinking water is available in the college campus<br /> 11. Grievances are redressed / problems are solved well in time<br /> 12. The functioning of the placement cell in the college is satisfactory<br /> 13. The entire syllabus is completed in time<br /> 14. The teachers are punctual and regular in taking lectures and practical’s<br /> 15. The teachers encourage participation and discussion in class<br /> 16. The teachers’ attitude towards the students is friendly & helpful <br /> 17. Modern teaching aids, power point presentations, web-resources, etc. are used by the teachers while teaching <br /> 18. The teachers are available and accessible in the Department after lecture timings <br /> 19. The evaluation process is fair and unbiased <br /> 20. The teachers guide the students for overall personality development of the students <br /> 21. The institute has adequate sport facility <br /> 22. The institute has social awareness programs <br /> 23. The institute has registered alumni association and their support to the existing students <br /> <br /> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover" border="1" cellspacing="0" cellpadding="0"> <thead> <tr> <th width="50">Sr. No</th> <th>Name</th> <th>Class</th> <th>Roll No</th> <th>Academic Year</th> <th>Extra Suggetions</th> <th>The office staff in the college is cooperative and helpful</th> <th>1</th> <th>2</th> <th>3</th> <th>4</th> <th>5</th> <th>6</th> <th>7</th> <th>8</th> <th>9</th> <th>10</th> <th>11</th> <th>12</th> <th>13</th> <th>14</th> <th>15</th> <th>16</th> <th>17</th> <th>18</th> <th>19</th> <th>20</th> <th>21</th> <th> 22 </th> <th> 23</th> <th>Date</th> <th>Time</th> </tr> </thead> <tbody> <?php $report_details = $db->get_all_feedback_data(); if(!empty($report_details)) { $counter =0; foreach($report_details as $record) { $id=$report_details[$counter][0]; $name=$report_details[$counter][1]; $class=$report_details[$counter][2]; $roll_no=$report_details[$counter][3]; $academic_year=$report_details[$counter][4]; $suggestions=$report_details[$counter][5]; $option1=$report_details[$counter][6]; $option2=$report_details[$counter][7]; $option3=$report_details[$counter][8]; $option4=$report_details[$counter][9]; $option5=$report_details[$counter][10]; $option6=$report_details[$counter][11]; $option7=$report_details[$counter][12]; $option8=$report_details[$counter][13]; $option9=$report_details[$counter][14]; $option10=$report_details[$counter][15]; $option11=$report_details[$counter][16]; $option12=$report_details[$counter][17]; $option13=$report_details[$counter][18]; $option14=$report_details[$counter][19]; $option15=$report_details[$counter][20]; $option16=$report_details[$counter][21]; $option17=$report_details[$counter][22]; $option18=$report_details[$counter][23]; $option19=$report_details[$counter][24]; $option20=$report_details[$counter][25]; $option21=$report_details[$counter][26]; $option22=$report_details[$counter][27]; $option23=$report_details[$counter][28]; $option24=$report_details[$counter][29]; $date=$report_details[$counter][30]; $time=$report_details[$counter][31]; ?> <tr> <td><?php echo $counter+1; ?></td> <td><?php echo $name; ?></td> <td><?php echo $class; ?></td> <td><?php echo $roll_no; ?></td> <td><?php echo $academic_year; ?></td> <td><?php echo $suggestions; ?></td> <td><?php echo $option1; ?></td> <td><?php echo $option2; ?></td> <td><?php echo $option3; ?></td> <td><?php echo $option4; ?></td> <td><?php echo $option5; ?></td> <td><?php echo $option6; ?></td> <td><?php echo $option7; ?></td> <td><?php echo $option8; ?></td> <td><?php echo $option9; ?></td> <td><?php echo $option10; ?></td> <td><?php echo $option11; ?></td> <td><?php echo $option12; ?></td> <td><?php echo $option13; ?></td> <td><?php echo $option14; ?></td> <td><?php echo $option15; ?></td> <td><?php echo $option16; ?></td> <td><?php echo $option17; ?></td> <td><?php echo $option18; ?></td> <td><?php echo $option19; ?></td> <td><?php echo $option20; ?></td> <td><?php echo $option21; ?></td> <td><?php echo $option22; ?></td> <td><?php echo $option23; ?></td> <td><?php echo $option24; ?></td> <td><?php echo $date; ?></td> <td><?php echo $time; ?></td> </tr> <?php $counter ++; } }else { ?> <td colspan="5">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>
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