Current File : /home/inlingua/public_html/noida/icentex/evaluation/html/fw_feedback_list.php
  <?php include('include/header.php') ;?>
 <!-- Main content -->
 <div class="container page1">
        <section class="content">
          <!-- Info boxes -->
          <div class="row">
        <div class="col-xs-12">
          <div class="box box-danger">
            <div class="box-header">
              <h3 class="box-title">First Week Feedback List</h3>

              
            </div>
            <!-- /.box-header -->
            <div class="box-body table-responsive no-padding">
			<form action="<?php echo make_url('fw_feedback_list'); ?>" method="POST" class="contact-form2">
              <input type="text" id="start_date" name="start_date" value="" size="20" placeholder="Start Date" aria-invalid="false" aria-required="true" class="form-row col-md-3">
			  <input type="text" id="end_date" name="end_date" value="" size="20" placeholder="End Date" aria-invalid="false" aria-required="true" class="form-row col-md-3">
			  <input type="text" name="course_id" value="" size="40" placeholder="Course/Batch ID*" aria-required="true" class="form-row col-md-3">
			  <input type="text" name="instructor_name" value="" size="40" placeholder="Instructor Name" aria-required="true" class="form-row col-md-3">
 
            
			<input type="submit" name="submit" value="Find" size="20" class="form-row form-row-control">
			  
			</form>
              <table class="table table-hover">
			 <? if($count_project>0){ ?>
                <tbody><tr>
                  <th>ID</th>
                  <th>Name</th>
                  <th>Course Level </th>
                  <th>Course/Batch ID </th>
                  <th>Instructor Name </th>
                  <th>Start Date </th>
                  <th>Info About Your Course </th>
                  <th>Right Level </th>
                  <th>Enjoying Lessons</th>
                  <th>Like The Method your Instructor</th>
                  
                  <th>Chances To Speak</th>
                  <th>Materials Your Instructor</th>
                  <th>Tell Us The Reasons</th>
                  <th>Learning Experience at Inlingua</th>
                  <th>Add Date</th>
                </tr>
				<?php $i=1;
				
				while($QueryObj1=$QueryObj->GetObjectFromRecord()): 
				$startdate = $QueryObj1->start_date;
				$date = date("d-m-Y", strtotime($startdate));
				
				$add_date = $QueryObj1->add_date;
				$add_date = date("d-m-Y", strtotime($add_date));
				?>
                <tr>
                  <td><?php echo $i; ?></td>
                  <td><?=$QueryObj1->name; ?></td>
				  <td><?=$QueryObj1->course_level; ?> </td>
				  <td><?=$QueryObj1->course_id; ?> </td>
				  <td><?=$QueryObj1->instructor_name; ?> </td>
                  <td><?=$date; ?></td>
                  <td><?=$QueryObj1->info_about_your_course; ?></td>
                  <td><?=$QueryObj1->right_level; ?></td>
                  <td><?=$QueryObj1->lessons; ?></td>
                  <td><?=$QueryObj1->instructor; ?></td>
                  <td><?=$QueryObj1->many_chances_speak; ?></td>
                  <td><?=$QueryObj1->materials; ?></td>
                  <td><?=$QueryObj1->reasons; ?></td>
                  <td><?=$QueryObj1->comments; ?></td>
                  <td><?=$add_date; ?></td>
                   
				   
                </tr>
				<?php $i++; endwhile;  ?>
                 
                
                
              </tbody>
			  <?php } else { ?>
			<tr>
				<td class="table_cell" >There area no data found in our database.</td>
			</tr>
			<?php } ?>
			  </table>
			    </div>
			  
             <?
			 /*
			 PageControl($QueryObj->PageNo, $QueryObj->TotalPages, $QueryObj->TotalRecords, DIR_WS_SITE, 'page=fw_feedback_list', 4);*/?>
           
          
            <!-- /.box-body -->
          </div>
          <!-- /.box -->
        </div>
      </div><!-- /.row --> 
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
 <link rel="stylesheet"href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
 <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>			
<script>
    $(document).ready(function () {
        var objDate = new Date();
        var Presentyear = objDate.getFullYear();
        $("#start_date").datepicker({
            //yearRange: '1900:' + Presentyear,
            changeMonth: true,
            changeYear: true,
			dateFormat: 'yy-mm-dd'
            //minDate: '0'
        });
		
		$("#end_date").datepicker({
            //yearRange: '1900:' + Presentyear,
            changeMonth: true,
            changeYear: true,
			dateFormat: 'yy-mm-dd'
            //minDate: '0'
        });
    });
	</script>

              <!-- TABLE: LATEST ORDERS -->
              <!-- /.box -->
            </div><!-- /.col -->

            <!-- /.row -->
        </section><!-- /.content -->
    </div>
	
<!-- End Home Page Slider -->    
<?php
include ("include/footer.php");
?>