?
Current Path : /home1/savoy/www/oscarerp.com/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/www/oscarerp.com/application/views/student/list_class_students_rollover.php |
<div class="grid_12" id="exam_sub"> <div class="box"> <div class="content no-padding"> <div class="header main"> Student Details</div> <div style="width: 100%;overflow-x: scroll; "> <table class="table" id="stud_sub"> <thead id="stud_sub_head"> <tr> <td style="text-align: center;width: 20%;">Select</td> <td style="text-align: center;width: 20%;">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;">Age</td> </tr> </thead> <tbody id="stud_sub_body"> <?php $j = 1; foreach ($std 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> <input type="hidden" name="student_class_id_<?= $list['student_id'] ?>" value="<?= $list['student_class_id'] ?>"/> <input type="checkbox" name="add_roll_over[]" value="<?= $list['student_id'] ?>"/> </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><?php $age_details = $this->mastermodel->getAgeDetails($studnt_name->dob); echo $age_details['in_words']; ?></td> </tr> <?php $j++; } ?> </tbody> </table> </div> </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="submit1" onclick="addformdata('validateform')" class="clickimage">Save</button> </div> </div> </div> </div>