?
Current Path : /home1/savoy/public_html/savoyglobal.net/eduplus1/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/eduplus1/application/views/hr/payment_method.php |
<?php $this->load->view('documentreadyfunctions'); //$this->load->view('commonfunctions'); ?> <div> <div class="box"> <div class="header main">Payment Details</div> <div class="content no-padding"> <table class="table"> <?php if ($payment_type == 2) { ?> <tr> <th width="40%">Cheque No</th> <th width="40%">Cheque Date</th> <th>Cheque Info</th> </tr> <tr> <td> <input type="text" name="cheque_no" id="cheque_no" class="required num_only" /> </td> <td> <input type="dateonly" name="cheque_date" id="cheque_date" class="required calfocus" /> </td> <td> <textarea name="cheque_info" id="cheque_info"></textarea> </td> </tr> <?php } if ($payment_type == 3) { ?> <tr> <th>Wire Info</th> <td><textarea name="wire_info" id="wire_info" class="required" ></textarea></td> </tr> <?php } ?> </table> </div> </div> </div>