?
Current Path : /home1/savoy/public_html/savoyglobal.net/eduplus1/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/eduplus1/application/views/student/extra_class_student.php |
<?php $this->load->view('documentreadyfunctions'); ?> <div class="grid_12" > <div class="box"> <div class="content no-padding"> <div class="header main"> Attendance Details</div> <table class="table" id="stud_sub"> <thead id="stud_sub_head"> <tr> <td style="text-align: center;height: 30px;">Sl no</td> <td style="text-align: center;">Student Name</td> <td style="text-align: center;" >Student No</td> <td style="text-align: center;" >Gender</td> <td style="text-align: center;" >Nationality</td> <td style="text-align: center;" >Attendance</td> <td style="text-align: center;">Extra class fees</td> </tr> <tr> <td colspan="5"> </td> <td style="text-align: center;">Mark if student attended class</td> <td style="text-align: center;"></td> </tr> </thead> <tbody> <?php $j = 1; foreach ($students as $list) { $studnt_name = $this->mastermodel->get_data_srow_joined('student', 'nationality', 'nationality_id', 'nationality_id',$list['student_id'], 'student_id'); ?> <tr> <input type="hidden" name="student_id_<?= $j ?>" value="<?= $list['student_id'] ?>"/> <td style="text-align: center;height: 30px;"><?= $j ?></td> <td><?= $studnt_name->first_name . " " . $studnt_name->last_name ?></td> <td><?= $studnt_name->reg_no?></td> <td><?= $studnt_name->gender?></td> <td><?= $studnt_name->nationality_name ?></td> <td style="text-align: center;"><input type="checkbox" name="extra_class<?= $j ?>" /></td> <td style="text-align: center;"><input name="extra_fee_amount<?= $j ?>" id="extra_fee_amount_<?= $j ?>" type="text" class="number auto"></td> </tr> <?php $j++; } ?> </tbody> </table> </div> </div> </div> <div class="grid_12" > <div class="box"> <div class="actions"> <div class="actions-left"> <input type="reset"> </div> <div class="actions-right"> <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Save</button> </div> </div> </div> </div>