?
Current Path : /home1/savoy/www/savoyglobal.net/drafthr/system/application/views/Master/ |
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/Master/branchinsurance.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <div class="select-bar"> <label> <img src="<?=base_url()?>/assets/images/add-icon.png" title="Add New" class="clickimage" onclick="addbranch()" alt="Add New" align = "center" width="25" height="25" /></label> </div> <div > <form action="" name="myform"> <table><tr> <td><input type="radio" name="branch" id="br1" value="1" checked onchange="showbranch()"/></td><td><label>Branch Of Insurance</label></td> <td><input type="radio" name="branch" id="sg1" value="2" onchange="showsegment()" /></td><td><label>Type Of Insurance</label></td> <td><input type="radio" name="branch" id="cr1" value="3" onchange="showcovertype()" /></td><td><label>Cover</label></td> </tr></table> </form> </div> <fieldset> <legend>Branch of Insurance</legend> <div class="table"> <img src="<?=base_url()?>/assets/images/bg-th-left.gif" width="8" height="7" alt="" class="left" /> <img src="<?=base_url()?>/assets/images/bg-th-right.gif" width="7" height="7" alt="" class="right" /> <table width="100%" align="center" class="listing" cellpadding="0" cellspacing="0"> <tr> <th width="30">Sl.No</th> <th >Branch of Insurance</th> <TH class="last">Action</TH> </tr> <?php if ($viewinfo->num_rows() > 0){ $id=1; foreach ($viewinfo->result() as $row){ echo '<tr><td>'.$id.'</td><td>'.$row->branch.'</td>'; ?> <td > <div id="console_fronticons"> <div class="fronticons"> <img src="<?=base_url()?>/assets/images/edit-icon.gif" class="clickimage" onclick="editbranch(<?=$row->id?>)" title="Edit" width="20" height="20" alt="Edit" align = "center" /></div><div class="fronticons"> <?=anchor('master/delete/branch_insurances/'.$row->id.'/1', '<img src="'.base_url().'/assets/images/delete-icon.png" title="Delete" width="20" height="20" alt="Delete" align = "center">',array('class'=>'delete','onclick'=>"return confirm('Are you sure want to delete this record?')"))?> </div></div> </td> <?php $id++; } } ?> </table> </div> </fieldset>