MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/lms_cafsinfotech_in/application/views/admin/rating/list.php
<?php defined('BASEPATH') OR exit('No direct script access allowed');
   if($this->session->flashdata('success')) {
      echo '<div class="alert alert-success alert-dismissible">
      <button type="button" class="close" aria-label="close" data-dismiss="alert">&times;</button>
      <strong>Success!</strong> '.$this->session->flashdata("success").'
      </div>';
   }
?>
<div class="panel panel-default">
   <div class="card">
      <?php
         $data['tab_quiz_id'] = $quiz_id;
         $this->load->view('admin/quiz/tab_list',$data);
      ?>
   </div>
   <input type="hidden" class="quiz_id" name="quiz_id" value="<?php echo xss_clean($quiz_id); ?>">
   <div class="clearfix"></div>
   <hr>
   <table id="table" class="display table table-striped table-bordered" cellspacing="0" width="100%">
      <thead>
         <tr>
            <th><?php echo lang('admin_table_no'); ?></th>
            <th><?php echo lang('name'); ?></th>
            <th><?php echo 'Comments'; ?></th>
            <th><?php echo 'Star'; ?></th>
            <th><?php echo 'Status'; ?></th>
         </tr>
      </thead>
      <tbody>
      </tbody>
   </table>
</div>