Current File : /home/inlingua/www/sensoriumpsychologists.com/backup/student/payment_old_18_5_20.php
<?php 

include_once("common/head_links.php");

include_once("../classes/config.php");

?>

<body class="hold-transition skin-blue sidebar-mini">

    <div class="wrapper">

<?php include_once("common/header.php");?>

<?php include_once("common/left_side_bar.php");?>

      <!-- Content Wrapper. Contains page content -->

      <div class="content-wrapper">

        <!-- Content Header (Page header) -->

        <section class="content-header">

          <h1>

            

          </h1>

        </section>

       <!-- Main content -->

        <section class="content">

<?php

 $id=$session_row['student_id'];

 $result=$query->select_where('shristi_students_payment','student_id',$id); ?>

          <!-- Info boxes -->          

         <div class="row">

	<div class="col-md-2"></div>

          	<div class="col-md-8 col-sm-8 col-xs-8">

  <table class="student table table-striped">

  <tr> 

<td colspan="11"> <h1>Payment Details</h1></td></tr>

<tr>

	<th>Order ID</th>

    <th>Payment Mode</th>

    <th>Total Amount</th>

    <th>Payment Date</th>

    <th>Next Due Date</th>

    <th>Payment Status</th>

</tr>

<?php while ($row=$result->fetch_assoc()){ ?>

<tr>

  <td><?php echo  $row['order_number'];?></td>

  <td>

  <?php echo  $row['payment_mode'];

  if($row['payment_mode']=="DD"){

	  echo $row['dd_no'];

  }

  ?>

  

  </td>

  <td><?php echo  $row['amount'];?></td>

  <td><?php echo  $row['paymet_date'];?></td>

  <td><?php echo  $row['next_due_date'];?></td>

  <td><?php echo  $row['status'];?></td>

</tr>	  

  <?php }?>		  

</table>

                

           </div>

          </div>

         

        </section>

      </div>

      <?php include_once("common/footer.php");?>

    </div><!-- ./wrapper -->

<?php include_once("common/footer_links.php");?>

</body>

</html>