?
Current Path : /home1/savoy/www/savoyglobal.net/drafthr/system/application/views/Home/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/www/savoyglobal.net/drafthr/system/application/views/Home/paymentschedulepage.php |
<fieldset><legend>View Payment Schedule</legend> <table class="sort"> <tr> <th>Sl No.</th> <th>Policy No.</th> <th>Insured</th> <th>Type of Cover</th> <th>Schedule Date</th> <th>Amount</th> </tr> <?php $i=0; foreach ($schlist as $schedule) { $i=$i+1; $sche_dat = $this->mastermodel->convdatformat($schedule['date']); $pid=$schedule['policy_id']; $covername= $this->mastermodel->get_cover($pid); $cname=$covername->cover; $custname=$covername->CustomerName; $policy_no= $this->customermodel->getSingleFieldValue('policynote','policyno','id',$pid); echo "<tr><td>".$i."</td><td>".$policy_no ."</td>"; ?> <td id="myTd" ><?php echo $custname ?></td> <?php echo"<td>".$cname."</td><td>".$sche_dat."</td><td>".number_format($schedule['amount'],2)."</td>"; ?> <?php echo "</tr>"; } ?> </table> </fieldset>