?
Current Path : /home1/savoy/public_html/savoyglobal.net/sibs_draft/system/application/views/HR/ |
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/public_html/savoyglobal.net/sibs_draft/system/application/views/HR/viewcovercom.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <table class="sort" cellpadding="0" cellspacing="0"><caption>Enter Commission(%)</caption> <thead><tr> <th>Type of Cover</th> <th>New(%)</th> <th>Renewal(%)</th> </tr> <?php $i=0; if (count($covercom)) { foreach ($covercom as $key => $list) { $i++; ?> <?php $data = array( 'name' => 'newpolicy_'.$i, 'id' => 'newpolicy_'.$i, 'style' => 'width:50%', ); $data1 = array( 'name' => 'renewal_'.$i, 'id' => 'renewal_'.$i, 'style' => 'width:50%', ); ?> <tr> <td><?=$list['cover'];?><input type="hidden" value ="<?= $list['id'];?>" name="coverid_<?=$i;?>" </td><td width="100px"> <?php echo form_input($data).form_error($data); ?> <span id="newpolicy_<?=$i;?>Info" class="red_bold">*</span></td> <td width="100px"> <?php echo form_input($data1).form_error($data1); ?> <span id="renewal_<?=$i;?>Info" class="red_bold">*</span></td> </tr> <?php } } ?> </table>