?
Current Path : /home1/savoy/public_html/savoyglobal.net/sec/application/views/student/ |
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/sec/application/views/student/student_details.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); ?> <tr> <td> <input style="width:15px;" type="checkbox" id="select_student<?=$index?>" name="select_student<?=$index?>" checked /> <input name="student_batch_id<?=$index?>" id="student_batch_id<?=$index?>" value="<?=$student_batch_id?>" type="hidden"/> </td> <td> <?=$viewinfo->first_name.' '.$viewinfo->last_name?> <input type="hidden" id="student_id<?=$index?>" name="student_id<?=$index?>" value="<?= $viewinfo->student_id ?>"/> </td> <td> <?=$viewinfo->reg_no;?> </td> <td> <?=$viewinfo->gender;?> </td> <td> <?=$viewinfo->nationality;?> </td> <td> <div style="height:10px"></div> <select name="session<?=$index?>" id="session<?=$index?>" class="medium_textbox"> <option value="">Select</option> <?php if(isset($sections)){ foreach ($sections as $value) { echo '<option value="'.$value['no_sessions_id'].'~'.$value['monthly_fee'].'">'.$value['no_sessions'].'</option>'; } } ?> </select> </td> <td> <input type="text" class="auto m-wrap small_textbox" name="register_fee<?=$index?>" id="register_fee<?=$index?>" value="<?=$reg_fee?>" /> </td> <td> <input type="text" class="auto m-wrap small_textbox" name="books_fee<?=$index?>" id="books_fee<?=$index?>" value="<?=$books_fee?>" /> </td> <td> <input type="checkbox" class="auto m-wrap small_textbox" name="recurring<?=$index?>" id="recurring<?=$index?>" value="1" /> </td> <td> <input type="text" class="required auto m-wrap small_textbox" name="course_fee<?=$index?>" id="course_fee<?=$index?>" value="<?=$fee?>" /><br/> <input type="text" class="required calfocus m-wrap medium_textbox" name="course_fee_date<?=$index?>" id="course_fee_date<?=$index?>" /> </td> </tr> <script type="text/javascript"> $(document).ready(function() { $('input.auto').autoNumeric(); $('.calfocus').datepick({dateFormat: 'dd-mm-yyyy'}); }); </script>